/*
Theme Name: Keynema-theme
Author: Hector Garrofe for Keynema
Author URI: http://www.hectorgarrofe.com
Description: Un theme básico sobre el que construir todos mis proyectos.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: keynema_framework
*/

/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* variables de color */
:root {
  --color-primario: 13, 13, 13;
  --color-secundario: 255, 255, 255;
}


article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    font-family: "Sora", sans-serif;
    color: #f0f0f0;
    background: #212121;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* RESET END */

/* Estilos básicos */

.link{
	text-decoration: none;
}

h1{
	color: #f0f0f0;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 40px;
	margin-bottom: 20px;
	line-height: 1.2em;
}

h2{
	color: #f0f0f0;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 32px;
	margin-bottom: 20px;
	margin: 20px 0;
	padding-bottom: 10px;
	border-bottom: 4px solid rgba(var(--color-primario), 0.15);
}

h3{
	color: #f0f0f0;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;
	font-size: 24px;
	margin-bottom: 20px;
	margin: 20px 0;
	padding-bottom: 10px;
	border-bottom: 4px solid rgba(var(--color-primario), 0.1);
}

p{
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 22px;
	line-height: 1.6em;
	margin-bottom: 20px;
}

p strong{
	font-weight: 700;
}

header#cabecera{
	float: left;
	background: #212121;
	width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-container .logo {
    flex-grow: 1;
}

.header-container .main-navigation {
    display: flex;
    justify-content: flex-end;
}

.header-container .menu-container {
    display: flex;
}

#primary-menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

#primary-menu .menu-item {
    margin-left: 20px;
}

#primary-menu .menu-item a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

#primary-menu .menu-item a:hover{
	color: #e3c622;
}

#primary-menu .current-menu-item a,
#primary-menu .current_page_parent a{
    color: #e3c622;	
}

.header-container .logo img {
    max-height: 70px;
    height: auto;
    width: auto;
    padding: 20px;
    box-sizing: border-box;
    padding-left: 0;
}

article ul,
article ol {
    font-size: 16px;
    line-height: 1.8em;
    padding-left: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    list-style-type: none;
}

article ul li,
article ol li {
    position: relative;
    padding-left: 20px;
}

article ul li::before,
article ol li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 11px;
    width: 6px;
    height: 6px;
    background-color: rgba(var(--color-primario), 0.7);
    display: inline-block;
}

article ul li strong,
article ol li strong{
	font-weight: 600;
}

/* Contenedor principal */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

footer.site-footer{
	background: rgba(var(--color-primario), 1);
	color: #ebebeb;
	margin-top: 80px;
	float: left;
	width: 100%;
}

footer.site-footer .container{
	padding-top: 40px;
	padding-bottom: 40px;
	box-sizing: border-box;	
}

.footer-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-menu li {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    padding: 10px 15px;
    transition: color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-menu a:hover {
    color: #f0f0f0;
}

.site-info {
    text-align: center;
    margin-top: 20px;
    color: #fff;
}

.button{
	background: rgba(var(--color-primario), 0.8);
	padding: 10px 20px;
	box-sizing: border-box;
	color: #fff;
	text-decoration: none;
	transition: all 0.3s;
	display: inline-block;
	border-radius: 5px;
}

.button:hover{
	background: rgba(var(--color-primario), 1);	
}

.button-container {
    text-align: right;
    margin-top: 20px;
}

.blog #content article{
	border-bottom: 4px solid rgba(var(--color-primario), 0.15);
	margin-bottom: 40px;
}

#breadcrumbs-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    background-color: #e3c622;
    padding: 10px;
	margin-bottom: 20px;
}

#breadcrumbs {
    margin: 0;
    color: rgba(var(--color-primario), 1);
    filter: brightness(0.7);
}

#breadcrumbs a{
	color: rgba(var(--color-primario), 1);
	text-decoration: none;
}


#intro{
	background: #F4BF68;
	text-align: center;
	display: inline-block;
	width: 100%;
	padding: 80px 0;
	box-sizing: border-box;
}

#destacado-uno h2{
	margin-bottom: 60px;
}

#destacado-uno-content{
	padding-top: 60px;
	padding-bottom: 60px;
}

#into-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

#left-intro{
    border: 2px solid #fff;
    border-radius: 10px;
    display: flex; 
    flex: 40%;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
    padding: .5rem;
    gap: 1rem;
}
#left-intro #get-the-beta{
    display: flex; justify-content: center; align-items: flex-start; width: 100%; border-bottom: 1px solid ;
}
#left-intro #download-beta-icons{
    display: flex; justify-content: center; align-items: center; width: 100%; padding: auto;
}
#left-intro #access-request-info{
    display: flex; justify-content: center; align-items: center; width: 100%;
}
#left-intro #access-request-info>p{
    font-size: smaller; padding-top: 10px; font-weight: 100;
}
#left-intro #access-request-info>ul>li{
    font-size: smaller; padding-top: 1rem;
}

#right-intro{
    display: flex; 
    flex: 60%;
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
}

#right-intro img{
	max-width: 90%;
	margin-top: 40px;
	margin-bottom: 20px;
}

#right-intro p{
	text-shadow: 1px 1px 0px #B88D48;
}

#left-intro h1{
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 30px;
	text-shadow: 1px 1px 0px #B88D48;
}

#left-intro .button{
	font-size: 12px;
}

#get-the-beta,
#macos-download,
#windows-download{
	width: 33%;
	float: left;
}

#get-the-beta p{
	font-size: 16px;
	text-shadow: 1px 1px 0px #B88D48;
	font-weight: 800;
}

#get-the-beta{
	text-transform: uppercase;
	margin-top: 20px;
}

.icon{
	background: #fff;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	margin: 10px auto;
}

.icon.macos img{
	max-width: 100%;
	padding: 20%;
	box-sizing: border-box;
}

.icon.windows img{
	max-width: 100%;
	padding: 30%;
	box-sizing: border-box;
}

.center-title{
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.pelotilla::after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #e3c622;
    border-radius: 50%;
    margin-left: 8px;
    margin-bottom: 4px;
}

#section-art-ch .section-content p{
	font-size: 18px;
}

article.post{
	margin-top: 60px;
}

.entry-content p{
	font-size: 18px;
}

.entry-header{
	font-size: 14px;
	margin-bottom: 20px;
}

article .wp-post-image{
	width: 100%;
	height: auto;
	margin-bottom: 20px;
}

.wp-block-embed iframe {
    max-width: 100%;
    width: 100%;
    height: 500px;
}

.entry-content a{
	color: #e3c622;
}

.entry-content .wp-block-heading{
	margin-top: 40px;
}

.blog .button,
.blog .button:hover{
	background: #e3c622;
	color: #000;
}

.icono{
	margin-right: 4px;
	display: inline-block;
}

/* ANNOUNCEMENT BAR */
.announcement-bar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    font-family: 'Sora', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    flex-wrap: wrap;
    text-align: center;
    border-bottom: 2px solid #e3c622;
	box-sizing: border-box;
}

.announcement-bar span {
    font-weight: 500;
}

.apply-button {
    background-color: #e3c622;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.apply-button:hover {
    background-color: #c0a820;
}

.site-header {
    margin-top: none; /* Ajusta si el anuncio ocupa más altura */
    /* padding-bottom: 2em; */
}
/* END ANNOUNCEMENT BAR */

/* FAQs */
.ewd-ufaq-faq-categories{
	margin-bottom: 10px;
}

.ewd-ufaq-faq-title h4{
	font-size: 24px;
}

.ewd-ufaq-faq-title-text{
	margin-bottom: 10px;
}
/* END FAQs */

/* BOTONES DE WOOCOMMERCE */
.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order{
	background: #e3c622;
	color: #000;
}
/* END BOTONES DE WOOCOMMERCE */

#access-request-info{
	color: #000;
}

#access-request-info a{
	color: #000;
	font-weight: 600;
}


/* BORRAR */
.post-718 .woocommerce-info{
	display: none;
}
/* END BORRAR */

/* Breakpoints RESPONSIVE */
@media (max-width: 1200px) {
    .container {
        max-width: 980px;
    }
    
    #left-intro,
    #right-intro{
	    width: 100%;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 880px;
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 660px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }
}

@media (max-width: 400px) {
    .footer-navigation {
        flex-direction: column;
        align-items: center;
    }

    .footer-menu {
        flex-direction: column;
        gap: 0px;
    }

    .footer-menu li {
        width: 100%;
        justify-content: center;
    }

    .footer-menu a {
        width: 100%;
    }
}



/* GRID DE FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    text-align: center;
}

.feature {
    background-color: #000; /* Fondo similar al de la imagen */
    padding: 40px;
    border-radius: 15px; /* Borde redondeado */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Sombra para darle más estilo */
}

.feature img {
    max-width: 40%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px; /* Borde redondeado para las imágenes */
}

.feature p {
    color: #fff; /* Color del texto */
    font-size: 16px;
    margin: 0;
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        /*grid-template-columns: 1fr;*/
        gap: 5px;
    }

    .feature p {
        font-size: 14px;
    }
}
/* END GRID DE FEATURES */

/* DOS TIPOS DE PRODUCTO */
#section-art-ch {
    padding: 40px 0;
    background-color: #000;
    color: #fff;
}

.section-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.content-block {
    width: 45%;
    margin: 20px 0;
}

.title-circle {
    width: 150px;
    height: 150px;
    border: 2px solid #e3c622;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
}

.title-circle h2 {
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 0 !important;
    font-size: 34px;
}

.title-circle h2::after {
    content: '';
    display: block;
    width: 15px;
    height: 15px;
    background: #e3c622;
    border-radius: 50%;
    float: right;
    margin-left: 8px;
    margin-top: 10px;
}

.icons-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.icon-feature {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    min-height: 140px;
}

.icon-feature img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

.icon-feature p{
    margin: 0;
    font-size: 16px !important;
}

@media (max-width: 1024px) {
    .content-block {
        width: 100%;
    }

    .icons-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .icons-grid {
        grid-template-columns: 1fr;
    }
}

/* Parte del equipo */
#equipo {
    padding: 40px 0;
    background-color: #000;
    color: #fff;
}

.team-member {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    gap: 50px;
}

.team-member.reverse {
    flex-direction: row-reverse;
}

.member-photo {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.member-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.member-photo h3 {
    margin-top: 10px;
    font-size: 18px;
}

.member-info {
    flex: 2;
    text-align: justify;
}

.member-info p{
    font-size: 16px;
}

@media (max-width: 768px) {
    .team-member,
    .team-member.reverse {
        flex-direction: column;
        text-align: center;
    }
    
    .member-info {
        text-align: center;
    }
}


/* SECCION DE COLABORADORAS*/
#colaboradoras {
    padding: 40px 0;
    background-color: #000;
    color: #fff;
}

.colab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.colab-member {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.colab-photo img {
    width: 100%;
    height: auto;
    border-radius: 15px;
	-webkit-border-top-left-radius: 80px;
	-webkit-border-bottom-right-radius: 80px;
	-moz-border-radius-topleft: 80px;
	-moz-border-radius-bottomright: 80px;
	border-top-left-radius: 80px;
	border-bottom-right-radius: 80px;
}

.colab-photo h3 {
    margin-top: 10px;
    font-size: 18px;
}

.colab-photo h4 {
    margin-top: 5px;
    font-size: 14px;
    font-weight: normal;
    color: #ccc;
}

.colab-info p {
    font-size: 14px;
    text-align: left;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .colab-grid {
        grid-template-columns: 1fr 1fr;
    }

    .colab-info p {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .colab-grid {
        grid-template-columns: 1fr;
    }

    .colab-info p {
        font-size: 12px;
    }
}


/* COLABORAMOS CON */
#colaboramos {
    padding: 40px 0;
    background-color: #000;
    color: #fff;
}

.colaboramos-description {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
    align-items: center;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    max-height: 150px;
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: 1fr;
    }

    .colaboramos-description {
        font-size: 14px;
    }
}


/* CAROUSEL DE CLIENTES */
#testimonios {
    padding: 40px 0;
    background-color: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.testimonial {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    max-width: 300px;
    flex-shrink: 0;
}

.testimonial img {
    width: 100%;
    height: auto;
    border-radius: 15px;
	-webkit-border-top-left-radius: 80px;
	-webkit-border-bottom-right-radius: 80px;
	-moz-border-radius-topleft: 80px;
	-moz-border-radius-bottomright: 80px;
	border-top-left-radius: 80px;
	border-bottom-right-radius: 80px;
}

.testimonial h3 {
    margin-top: 10px;
    font-size: 18px;
}

.testimonial h4 {
    margin-top: 5px;
    font-size: 14px;
    font-weight: normal;
    color: #ccc;
}

.testimonial p {
    font-size: 14px;
    margin-top: 10px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #e3c622 !important;
}

.swiper-pagination-bullet {
    background: #fff !important;
}

.swiper-pagination-bullet-active{
	#e3c622 !important;
}

@media (max-width: 1024px) {
    .swiper-container {
        width: 100%;
    }

    .testimonial {
        max-width: 80%;
    }
}

@media (max-width: 768px) {
    .swiper-container {
        width: 100%;
    }

    .testimonial {
        max-width: 100%;
    }

    .testimonial p {
        font-size: 12px;
    }
}


/* FORMULARI DE CONTACTE */
#contacto {
    padding: 40px 0;
    background-color: #000;
    color: #fff;
}

#contact-form,
.wpcf7-form {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label,
.wpcf7-form label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    height: 100px;
}

.form-group input[type="checkbox"] {
    display: inline-block;
    width: auto;
    margin-right: 10px;
}

.form-group label[for="acepto"] {
    display: inline-block;
    font-size: 14px;
    color: #ccc;
}

.form-group label[for="acepto"] a {
    color: #fff;
    text-decoration: underline;
}

.submit-button,
.wpcf7-submit {
    background-color: #f0c040;
    color: #000;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    box-sizing: border-box;
}

.submit-button:hover {
    background-color: #e0b030;
}

@media (max-width: 768px) {
    #contact-form {
        padding: 10px;
    }

    .submit-button {
        font-size: 14px;
    }
}

/* FOOTER */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.container-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    padding: 10px;
    text-align: center;
}

.footer-column a {
    text-decoration: none;
}

.footer-social{
    margin-right: 10px;
}
.footer-logo {
    max-width: 150px;
    margin-bottom: 10px;
}

.footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 5px 0;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f0c040;
}

.footer-social img {
    max-width: 40px;
    transition: transform 0.3s;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.site-info {
    margin-top: 20px;
}

@media (max-width: 768px) {
    .footer-columns {
        flex-direction: column;
    }

    .footer-column {
        margin-bottom: 20px;
    }
}


/* AJUSTOS CONCRETS */
@media (max-width: 600px) {
    #left-intro{
	    padding-top: 0;
    }
    
    #get-the-beta{
	    width: 100%;
    }
    
    #macos-download,
    #windows-download{
	    width: 50%;
    }
}

/* TAULES DE PREUS*/
.toggle-section {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.toggle-switch {
    background-color: #f8f8f8;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    padding: 5px;
}

.toggle-switch input[type="radio"] {
    display: none;
}

.toggle-switch label {
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 20px;
    margin: 0 5px;
    transition: background-color 0.3s, color 0.3s;
    color: #b1b1b1;
}

.toggle-switch input[type="radio"]:checked + label {
    background-color: white;
    color: black;
    font-weight: bold;
}

.pricing-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 10px;
}

.card {
    background-color: #F4BF68;
    text-shadow: 1px 1px 0px #B88D48;
    color: white;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.card h3 {
    margin-top: 0;
    font-size: 24px;
}

.card .price {
    font-weight: 2rem;
    margin: 10px 0;
    /* border: 1px solid #fff; */
    box-sizing: border-box;
    border-radius: 10px;
    background: linear-gradient(to bottom, #222222, #444444);
}

.card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.card ul li {
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.card ul li.disabled {
    opacity: 0.5;
}

.card button {
    background-color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 18px;
    color: #000;
    font-weight: bold;
}

.card button:hover {
    /*background-color: red;*/
}

.card .fa-solid{
	margin-right: 5px;
}

@media (max-width: 768px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }
    
    #logo_name,
    #menu-item-12{
	    display: none;
    }
    
    #primary-menu .menu-item{
	    margin-left: 5px;
    }
    
    #primary-menu .menu-item a{
	    font-size: 16px;
    }
}

/* FIN TAULES DE PREUS*/

.button-menu{
	border: 2px solid #e3c622;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 10px;
}

#menu-item-register.button-menu,
#menu-item-register.button-menu a{
	background: #e3c622;
	color: #000 !important;
}

#menu-item-register.button-menu:hover a,
#menu-item-register.button-menu a:hover{
	color: #ffffff !important;
}

.menu-spacer{
	padding: 10px;
	box-sizing: border-box;	
}

/**  DISABLES (with function) the order-again button in user profile > orders */
.woocommerce-order-details .order-again {
    display: none !important;
}
/**  */


/* --START-- WOO TEMPLATES */
.woo-knma-checkout-order-col {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.woo-knma-checkout-order-col #add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
    background: #212121;
    border-radius: 5px;
}

.woo-knma-checkout-order-col .wc_payment_methods.payment_methods.methods {
    border: 1px solid white;
    border-radius: 5px;
}


/* HEADER MENU*/
.header-container .main-navigation {
    align-items: center;
}
.main-navigation .sign-menu-container {
    display: block;
}
.main-navigation .sign-menu-container ul#signMenu {
    display: flex;
    list-style: none;
    padding-left: 1rem;
    margin: 0;
    gap: 1rem;
}
#signMenu .menu-item a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}
#signMenu .menu-item a:hover {
    color: #e3c622;
}
/* --END-- WOO TEMPLATES */


/*MENU MOBILE*/
/* Estilos del botón hamburguesa */
.mobile-menu-toggle {
    display: none; /* Oculto por defecto en pantallas grandes */
    background: none;
    border: none;
    position: absolute;
    top: 28px;
    right: 70px;
    cursor: pointer;
    z-index: 20;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
    background-color: #fff;
}

.hamburger-icon {
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: relative;
    display: inline-block;
    transition: all 0.3s;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    width: 25px;
    height: 3px;
    background-color: #fff;
    position: absolute;
    left: 0;
    transition: all 0.3s;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    top: 8px;
}

/* Estilos del menú móvil (oculto por defecto) */
.mobile-navigation {
    display: none; /* Oculto por defecto */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 15;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-navigation {
    display: none;
}

.mobile-navigation.active {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}


.mobile-navigation ul {
    list-style: none;
    padding: 0;
}

.mobile-navigation a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    padding: 15px 0;
    display: block;
}

.getlicense{
	color: #fff !important;
	font-size: 14px !important;
}

.download{
	opacity: 0.8;
}

.getlicense .fa-key{
	margin-right: 5px;
}

#footer-email{
	color: #fff;
	text-decoration: none;
}
#intro {
    padding: 60px 20px;
    padding-top: 30px;
    background: #212121; /* fondo oscuro como en la imagen */
    color: #ffffff;
}

#intro-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Columna izquierda */
#left-intro {
    flex: 1 1 600px;
    max-width: 600px;
    border: none !important;
}

/* Badge */
#license-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #202A36;
    color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 500;
}

#license-badge .badge-number {
    background: #ffd700;
    color: red;
    padding: 2px 8px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
}

/* Título */
#left-intro .entry-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
}

#left-intro .highlight {
    color: #ffd700; /* amarillo dorado */
}

/* Descripción */
#left-intro .description {
    font-size: 18px;
    line-height: 1.6;
    color: #bbbbbb;
    margin-bottom: 30px;
}

/* Botón */
#cta-button .button {
    display: inline-block;
    background: #ffd700;
    color: #000000;
    padding: 14px 28px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.3s ease;
}

#cta-button .button:hover {
    background: #ffcc00;
}

/* Nota pequeña */
#left-intro .small-note {
    font-size: 14px;
    color: #777777;
    margin-top: 15px;
}

/* Columna derecha */
#right-intro {
    flex: 1 1 500px;
    max-width: 500px;
    text-align: center;
}

#right-intro img {
    max-width: 100%;
    height: auto;
}

#intro-content .description strong{
	color: #fff;
}


@media (max-width: 1210px) {
    #left-intro {
        max-width: 100%;
    }
}

/* Alternar entre menú de escritorio y menú móvil según el tamaño de la pantalla */
@media (max-width: 1024px) {
    .main-navigation {
        display: none; /* Ocultar el menú de escritorio en pantallas pequeñas */
    }

    .mobile-menu-toggle {
        display: inline-block; /* Mostrar botón hamburguesa en pantallas pequeñas */
    }

    .mobile-navigation.active {
        display: flex; /* Mostrar el menú móvil cuando está activo */
    }

    #site-navigation {
        display: none;
    }
    
    .site-header{
	    box-sizing: border-box;
    }
    
    .logo{
	    text-align: center;
    }
}

@media (max-width: 770px) {
    #left-intro {
        max-width: 200px;
    }
    .site-header{
		margin-top: 80px;
    }
	
	.mobile-menu-toggle{
		top: 108px;
	}
}
/*END MENU MOBILE*/

@media (max-width: 1210px) {
    #left-intro, #right-intro {
        max-width: 75%;
        margin: auto;
    }
}


/* Ocultar el botón de eliminar cupón en la página de pago de WooCommerce */
.woocommerce-remove-coupon {
    display: none !important;
}