/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius);
    font-weight: 500;
    transition: var(--transition-all);
    cursor: pointer;
}

.button--primary {
    background: var(--gradient-primary);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content; /* Ajusta el ancho al contenido */
}
.button--primary_home {
    background: var(--gradient-primary);
    color: var(--color-text);
    box-shadow: var(--shadow-md);
}



.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-text);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Botón de cambio de precio */
.toggle-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.toggle-button:hover {
    background: var(--primary-color-dark);
    transform: scale(1.05);
}

.toggle-button.active {
    background: var(--secondary-color); /* Color de fondo activo */
}

/* Cards */
.card {
    background: var(--color-bg-secondary);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: var(--transition-all);
}

.feature-card {
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0.05)
    );
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: var(--transition-all);
    border: 2px solid #00D4FF;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature-card__icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-3);
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: var(--space-4) 0;
    background: rgba(11, 16, 32, 0.8);
    backdrop-filter: blur(10px);
    z-index: var(--z-header);
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav__item {
    margin: 0;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link.active {
    color: var(--primary-color);
}

.nav__link--cta {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav__link--cta:hover {
    background-color: var(--primary-color-dark);
    color: #ffffff;
}

.nav__toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: background-color 0.3s;
}

.nav__icon::before,
.nav__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.3s;
}

.nav__icon::before {
    top: -6px;
}

.nav__icon::after {
    bottom: -6px;
}

/* Animación del ícono cuando el menú está activo */
[aria-expanded="true"] .nav__icon {
    background-color: transparent;
}

[aria-expanded="true"] .nav__icon::before {
    transform: rotate(45deg);
    top: 0;
}

[aria-expanded="true"] .nav__icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Fondo de las categorías de precios */
.pricing-card {
    background: #40424b !important; /* Fondo blanco para mejor contraste */
    border: 0px solid #e5e7eb !important; /* Borde sutil */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    background: var(--primary-color);
    color: white;
    position: relative;
}

.pricing-card--popular::before {
    content: 'Más Popular';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: bold;
}

/* Header & Navigation */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    height: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav__item {
    margin: 0;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link.active {
    color: var(--primary-color);    
}

.nav__link--cta {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
}

.nav__link--cta:hover {
    background-color: var(--primary-color-dark);
    color: #ffffff;
}

.nav__toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__icon {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: relative;
    transition: background-color 0.3s;
}

.nav__icon::before,
.nav__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: transform 0.3s;
}

.nav__icon::before {
    top: -6px;
}

.nav__icon::after {
    bottom: -6px;
}

/* Animación del ícono cuando el menú está activo */
[aria-expanded="true"] .nav__icon {
    background-color: transparent;
}

[aria-expanded="true"] .nav__icon::before {
    transform: rotate(45deg);
    top: 0;
}

[aria-expanded="true"] .nav__icon::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* Hamburger Menu */

.nav__toggle .hamburger span {
    background-color: white; /* Color cuando el menú está cerrado */
}

/* Hamburger Menu - Estado abierto */
.nav__toggle.show-menu .hamburger span {
    background-color: #333; /* Color cuando el menú está abierto */
}

/* Animación del hamburger cuando el menú está abierto */
.nav__toggle.show-menu .hamburger span:first-child {
    transform: translateY(9px) rotate(45deg);
    background-color: #333;
}

.nav__toggle.show-menu .hamburger span:nth-child(2) {
    opacity: 0;
}

.nav__toggle.show-menu .hamburger span:last-child {
    transform: translateY(-9px) rotate(-45deg);
    background-color: #333;
}

.nav__toggle {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav {
       padding: var(--space-3) 0;
        background: rgba(11, 16, 32, 0.95); /* Fondo más sólido */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }


    .nav__toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav__toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .nav__link:hover {
    color: var(--primary-color);
    color: var(--color-bg);
}

.nav__link.active {
    color: var(--color-bg);
}


    .hamburger {
        width: 25px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

   .hamburger {
        width: 24px;
        height: 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;z-index: 10000;
    }

    /* Animación del hamburger cuando el menú está abierto */
    .nav__toggle.show-menu .hamburger span:first-child {
        transform: translateY(7px) rotate(45deg);
        background-color: #333;
    }

    .nav__toggle.show-menu .hamburger span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav__toggle.show-menu .hamburger span:last-child {
        transform: translateY(-7px) rotate(-45deg);
        background-color: #333;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: auto !important;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px var(--space-4) var(--space-4);
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.show-menu {
        left: 0;
    }

    .nav__item {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav__menu.show-menu .nav__item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Animación escalonada para los items */
    .nav__menu.show-menu .nav__item:nth-child(1) { transition-delay: 0.1s; }
    .nav__menu.show-menu .nav__item:nth-child(2) { transition-delay: 0.15s; }
    .nav__menu.show-menu .nav__item:nth-child(3) { transition-delay: 0.2s; }
    .nav__menu.show-menu .nav__item:nth-child(4) { transition-delay: 0.25s; }
    .nav__menu.show-menu .nav__item:nth-child(5) { transition-delay: 0.3s; }
    .nav__menu.show-menu .nav__item:nth-child(6) { transition-delay: 0.35s; }

    .nav__link {
        display: block;
        padding: var(--space-3) 0;
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        transition: color 0.2s ease;
    }

    .nav__link:hover {
        color: var(--primary-color);
    }

    .nav__link--cta {
        margin-top: var(--space-4);
        background: var(--gradient-primary);
        color: white;
        padding: var(--space-3) var(--space-4);
        border-radius: 8px;
        text-align: center;
        border: none;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav__link--cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Overlay cuando el menú está abierto */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.show-overlay {
        opacity: 1;
        pointer-events: auto;
    }
}

/* Menú principal */
.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
    background: rgba(11, 16, 32, 0.8);
    backdrop-filter: blur(10px);
    z-index: var(--z-header);
}

.nav__menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-color);
}

/* Submenú */
.nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11, 16, 32, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: var(--space-3);
    margin: 0;
    display: none;
    z-index: var(--z-header);
    width: 250px;
}

.nav__submenu li {
    margin: 0.5rem 0;
}

.nav__submenu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Efecto hover en los elementos del submenú */
.nav__submenu a:hover {
    background-color: #00D4FF;
    color: #ffffff; /* Cambiar el texto a blanco al pasar el mouse */
}

/* Mostrar submenú al pasar el mouse */
.nav__item:hover .nav__submenu {
    display: block;
}

/* Hero Section */
.hero__title {
    position: relative;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-size: 2.5rem; /* Ajusta según el diseño */
    font-weight: 700;
    text-align: center;
    display: inline; /* Cambiado para que fluya naturalmente */
}

.hero__title .typed-text {
    color: var(--primary-color) !important;
}

.section__title{
    color: #00D4FF !important; /* Mismo color que el texto dinámico */
    font-size: 2.2rem;
}

.section__subtitle{
    color: #e7e7e7;
    font-size: 1.2rem;
}

.examples-grid p{
    font-size: 1.1rem;
}

.example h3{
    color: #ffffff !important; /* Mismo color que el texto dinámico */
    font-size: 1.6rem;
}
.icons{
    color: var(--color-bluemodern) !important; /* Color del texto dinámico */
    font-size: 1.4em !important;
}

.typed-text-container {
    display: inline-block;
    min-width: 180px; /* Ajusta según la palabra más larga */
    vertical-align: baseline; /* Asegura que se alinee con el texto */
    white-space: nowrap; /* Evita que el texto dinámico se divida */
        color: var(--color-bluemodern)  !important;

}

.typed-text {
    display: inline; /* Asegura que el texto dinámico fluya con el texto */
    color: var(--primary-color);
}

/* Texto dinámico */
.typed-text {
    color: var(--color-bluemern) !important; /* Color del texto dinámico */
    font-weight: bold;
}

/* Cursor del efecto de escritura */
.typed-cursor {
    display: inline-block;
    width: 6px;
    height: 1em;
    background-color: #00D4FF; /* Mismo color que el texto dinámico */
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

/* Animación de parpadeo del cursor */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

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

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.case-card {
    background: #333a48 !important;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 2px solid #00D4FF !important;
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.case-card__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.case-card__list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.case-card__list li:before {
    content: '→';
    position: absolute;
    left: -5px;
    top: -10px;
    color: var(--color-bluemodern);
    font-size: 1.5rem;
}

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

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .case-card h3 {
        min-height: auto;
    }
}

/* Tools Integrations */
.tools-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    
}
.tools-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    
}
.tools-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    
}
.tools-grid-7{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.tools-grid-9{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.tools-card {
    border-radius: 25px;
    padding: 1rem;    
    transition: transform 0.3s ease;
    border: 2px solid #00D4FF !important;
    background: #ffffff !important; 
    margin: auto;
    height: 100%;
    padding: auto;
    display: flex;
    width: 100px;
}

.tools-card:hover {
    transform: translateY(-5px);
}
.tools-card__icon {
    font-size: 4rem;        
}


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

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

/* Pricing Section */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #333a48 !important; /* Fondo blanco para mejor contraste */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #00D4FF !important;
    
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    background: var(--primary-color);
    color: white;
    position: relative;
}

.pricing-card--popular::before {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #00D4FF;
}
h3.pricing-card__name{
margin-top: 20px;
font-size: 1.9rem !important;
}
.pricing-card__title h3 {
    font-size: 1.4rem !important;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000 !important;
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #00D4FF;
}

.pricing-card__price .period {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--color-bluemodern);
    margin-left: 0.25rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: var(--text-color-secondary);
}

.pricing-card__features li {
    margin-bottom: .8rem;
}

.pricing-card button {
    margin-top: 1rem;
}

/* Fondo de la sección de precios */
.bg-gradient-alt {
    color: var(--text-color);
}

/* Responsive Pricing Grid */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    
}

.contact-benefits {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

/* Footer */
.footer {
    background: var(--footer-bg);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
}

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

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

/* Background Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 10s infinite ease-in-out; /* Animación lenta y continua */
}

.shape--circle {
    width: 200px;
    height: 200px;
    background: #09d6ff;
    border-radius: 50%;
    top: 10%;
    left: 15%;
    animation-duration: 12s; /* Duración personalizada */
}

.shape--triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 200px solid #00D4FF;
    top: 50%;
    left: 70%;
    animation-duration: 15s; /* Duración personalizada */
}

.shape--square {
    width: 150px;
    height: 150px;
    background: #00D4FF;
    top: 80%;
    left: 30%;
    animation-duration: 18s; /* Duración personalizada */
}

/* Animación para las figuras geométricas */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-30px, 20px);
    }
    75% {
        transform: translate(-20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Cursor Effect */
body {
    cursor: none; /* Oculta el cursor predeterminado */
    text-align: justify;
}

/* Cursor personalizado */
.custom-cursor {
    position: fixed;
    top: -20px;
    left: -20px;
    width: 45px;
    height: 45px;
    background: #00D4FF;
    opacity: 0.6;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%); /* Centrar el círculo en el punto de clic */
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.custom-cursor--hover {
    transform: translate(-50%, -50%) scale(1.5); /* Mantener el centro al agrandar */
    background-color: #00D4FF;
}

/* Contact Form */
.form {
    background: var(--color-bg-secondary);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid #00D4FF;
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-text-secondary);
}

.form-input {
    width: 100%;
    padding: var(--space-3);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    transition: var(--transition-all);
}

.form-input:focus {
    border-color: var(--color-accent-1);
    box-shadow: 0 0 0 2px rgba(110, 231, 249, 0.1);
    outline: none;
}

/* Examples Section */
.examples-grid {
    display: grid;
    gap: 4rem;
}

.example {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.example__text {
    flex: 1;
}

.example__image {
    flex: 1;
    text-align: center;
}

.example__image img {
    max-width: 80%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);

}

.example--reverse {
    flex-direction: row-reverse;
}


.caseof__image {
    flex: 1;
    text-align: center;    
    border-radius: 20px;
}

.caseof__image img {
    border: 2px solid #00D4FF !important;
    border-radius: 20px !important;
    max-width: 100%;
    height: 100%;

}

.example--reverse {
    flex-direction: row-reverse;
}


/*
Boton Multilenguaje
*/

/* Estilos para el botón de cambio de idioma */
.nav__link--language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.nav__link--language:hover {
  color: var(--primary-color);
}

.language-flag {
  font-size: 1.2rem;
}

/* Para la versión móvil */
@media (max-width: 768px) {
  .nav__link--language {
    padding: 1rem;
    justify-content: center;
  }
}


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

    .example--reverse {
        flex-direction: column;
    }
    .example__image {
    flex: 1;
    text-align: center;
}

.example__image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

}
.example--reverse {
    flex-direction: row-reverse;
}

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

    .example--reverse {
        flex-direction: column;
    }
}

/* Logo dinámico */
.nav__logo img {
    width: 180px; /* Tamaño grande inicial */
    height: auto;
    transition: width 0.3s ease, height 0.3s ease;
}

.nav__logo--small img {
    width: 120px; /* Tamaño reducido al hacer scroll */
}
@media (max-width: 768px) {
    .example {
        flex-direction: column;
    }

    .example--reverse {
        flex-direction: column;
    }
}

/* Logo dinámico */
.nav__logo img {
    width: 180px; /* Tamaño grande inicial */
    height: auto;
    transition: width 0.3s ease, height 0.3s ease;
}

.nav__logo--small img {
    width: 120px; /* Tamaño reducido al hacer scroll */
}

/* Indicadores */
.indicators-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.indicator {
    width: 150px;
    height: 150px;
    background: rgb(51, 58, 72) !important;
    border: 2px solid #00D4FF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.indicator:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.indicator__value {
    font-size: 2rem;
    font-weight: bold;
    color: #00D4FF;
}

.indicator__label {
    font-size: 1rem;
    color: var(--text-color-secondary);
    text-align: center;
}

/* Formulario de contacto */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#other-input {
    margin-top: 0.5rem;
}

/* CTA Final */
.cta-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
    

    .indicator__label {
        font-size: 1rem;
    }


    .social-links i{
        color: #fff !important ;
        font-size: 1.8rem !important ;
    }



/* Adjust styles for flag images */
.language-flag {
    width: 16px; /* Reduced size for better alignment */
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* Ensure dropdown options are visible */
.nav__item--language {
    display: flex;
    align-items: center; /* Vertically center the content */
    position: relative;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Align dropdown below the button */
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: max-content; /* Ensure dropdown width adjusts to content */
}

.language-dropdown li {
    list-style: none;
}

.language-dropdown .language-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.language-dropdown .language-option:hover {
    background-color: #f0f0f0;
}

/* Show dropdown on hover */
.nav__item--language:hover .language-dropdown {
    display: block;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 0;
}

.checkbox-wrapper label {
    margin: 0;
    cursor: pointer;
}

/* Mobile Navigation */
@media screen and (max-width: 768px) {
    .nav {
       padding: var(--space-3) 0;
        background: rgba(11, 16, 32, 0.95); /* Fondo más sólido */
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }


    .nav__toggle {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav__toggle:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    .nav__link:hover {
    color: var(--primary-color);
    color: var(--color-bg);
}

.nav__link.active {
    color: var(--color-bg);
}


    .hamburger {
        width: 25px;
        height: 20px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

   .hamburger {
        width: 24px;
        height: 16px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: white;
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center;z-index: 10000;
    }

    /* Animación del hamburger cuando el menú está abierto */
    .nav__toggle.show-menu .hamburger span:first-child {
        transform: translateY(7px) rotate(45deg);
        background-color: #333;
    }

    .nav__toggle.show-menu .hamburger span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .nav__toggle.show-menu .hamburger span:last-child {
        transform: translateY(-7px) rotate(-45deg);
        background-color: #333;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        max-width: auto !important;
        height: 100vh;
        background: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px var(--space-4) var(--space-4);
        z-index: 1000;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav__menu.show-menu {
        left: 0;
    }

    .nav__item {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: all 0.3s ease;
    }

    .nav__menu.show-menu .nav__item {
        opacity: 1;
        transform: translateX(0);
    }

    /* Animación escalonada para los items */
    .nav__menu.show-menu .nav__item:nth-child(1) { transition-delay: 0.1s; }
    .nav__menu.show-menu .nav__item:nth-child(2) { transition-delay: 0.15s; }
    .nav__menu.show-menu .nav__item:nth-child(3) { transition-delay: 0.2s; }
    .nav__menu.show-menu .nav__item:nth-child(4) { transition-delay: 0.25s; }
    .nav__menu.show-menu .nav__item:nth-child(5) { transition-delay: 0.3s; }
    .nav__menu.show-menu .nav__item:nth-child(6) { transition-delay: 0.35s; }

    .nav__link {
        display: block;
        padding: var(--space-3) 0;
        color: #333;
        font-size: 1.1rem;
        font-weight: 500;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        transition: color 0.2s ease;
    }

    .nav__link:hover {
        color: var(--primary-color);
    }

    .nav__link--cta {
        margin-top: var(--space-4);
        background: var(--gradient-primary);
        color: white;
        padding: var(--space-3) var(--space-4);
        border-radius: 8px;
        text-align: center;
        border: none;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav__link--cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* Overlay cuando el menú está abierto */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-overlay.show-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .nav__link {
        color: var(--color-bluemodern) !important; /* Cambiado el color del texto del menú */
    }

    .nav__link:hover,
    .nav__link.active {
        opacity: 0.8;
    }

    /* Ajuste de indicadores en móvil */
    .indicators-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .indicator {
        width: 200px; /* Un poco más grande para mejor visualización */
        height: 200px;
    }

    /* Ocultar cursor personalizado en móvil */
    .custom-cursor {
        display: none;
    }

    /* Restaurar cursor normal en móvil */
    body {
        cursor: auto;
    }
}

/* Menú principal */
.nav {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-4) 0;
    background: rgba(11, 16, 32, 0.8);
    backdrop-filter: blur(10px);
    z-index: var(--z-header);
}

.nav__menu {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 2rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: var(--primary-color);
}

/* Submenú */
.nav__submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11, 16, 32, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    list-style: none;
    padding: var(--space-3);
    margin: 0;
    display: none;
    z-index: var(--z-header);
    width: 250px;
}

.nav__submenu li {
    margin: 0.5rem 0;
}

.nav__submenu a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Efecto hover en los elementos del submenú */
.nav__submenu a:hover {
    background-color: #00D4FF;
    color: #ffffff; /* Cambiar el texto a blanco al pasar el mouse */
}

/* Mostrar submenú al pasar el mouse */
.nav__item:hover .nav__submenu {
    display: block;
}

/* Hero Section */
.hero__title {
    position: relative;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-size: 2.5rem; /* Ajusta según el diseño */
    font-weight: 700;
    text-align: center;
    display: inline; /* Cambiado para que fluya naturalmente */
}

.hero__title .typed-text {
    color: var(--primary-color) !important;
}

.section__title{
    color: #00D4FF !important; /* Mismo color que el texto dinámico */
    font-size: 2.2rem;
}

.section__subtitle{
    color: #e7e7e7;
    font-size: 1.2rem;
}

.examples-grid p{
    font-size: 1.1rem;
}

.example h3{
    color: #ffffff !important; /* Mismo color que el texto dinámico */
    font-size: 1.6rem;
}
.icons{
    color: var(--color-bluemodern) !important; /* Color del texto dinámico */
    font-size: 1.4em !important;
}

.typed-text-container {
    display: inline-block;
    min-width: 180px; /* Ajusta según la palabra más larga */
    vertical-align: baseline; /* Asegura que se alinee con el texto */
    white-space: nowrap; /* Evita que el texto dinámico se divida */
        color: var(--color-bluemodern)  !important;

}

.typed-text {
    display: inline; /* Asegura que el texto dinámico fluya con el texto */
    color: var(--primary-color);
}

/* Texto dinámico */
.typed-text {
    color: var(--color-bluemern) !important; /* Color del texto dinámico */
    font-weight: bold;
}

/* Cursor del efecto de escritura */
.typed-cursor {
    display: inline-block;
    width: 6px;
    height: 1em;
    background-color: #00D4FF; /* Mismo color que el texto dinámico */
    margin-left: 2px;
    animation: blink 0.7s infinite;
}

/* Animación de parpadeo del cursor */
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

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

/* Cases Section */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.case-card {
    background: #333a48 !important;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 2px solid #00D4FF !important;
}

.case-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.case-card p {
    font-size: 1rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.case-card__list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.case-card__list li {
    margin-bottom: 0.5rem;
    font-size: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.case-card__list li:before {
    content: '→';
    position: absolute;
    left: -5px;
    top: -10px;
    color: var(--color-bluemodern);
    font-size: 1.5rem;
}

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

@media (max-width: 768px) {
    .cases-grid {
        grid-template-columns: 1fr;
        padding: 0 0.5rem;
    }
    
    .case-card h3 {
        min-height: auto;
    }
}

/* Tools Integrations */
.tools-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    
}
.tools-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    
}
.tools-grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    
}
.tools-grid-7{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.tools-grid-9{
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.tools-card {
    border-radius: 25px;
    padding: 1rem;    
    transition: transform 0.3s ease;
    border: 2px solid #00D4FF !important;
    background: #ffffff !important; 
    margin: auto;
    height: 100%;
    padding: auto;
    display: flex;
    width: 100px;
}

.tools-card:hover {
    transform: translateY(-5px);
}
.tools-card__icon {
    font-size: 4rem;        
}


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

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

/* Pricing Section */
.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #333a48 !important; /* Fondo blanco para mejor contraste */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #00D4FF !important;
    
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pricing-card--popular {
    background: var(--primary-color);
    color: white;
    position: relative;
}

.pricing-card--popular::before {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: bold;
    border: 2px solid #00D4FF;
}
h3.pricing-card__name{
margin-top: 20px;
font-size: 1.9rem !important;
}
.pricing-card__title h3 {
    font-size: 1.4rem !important;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #000 !important;
}

.pricing-card__price {
    font-size: 2.5rem;
    font-weight: bold;
    margin: 1rem 0;
    color: #00D4FF;
}

.pricing-card__price .period {
    font-size: 1.5rem;
    font-weight: normal;
    color: var(--color-bluemodern);
    margin-left: 0.25rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    color: var(--text-color-secondary);
}

.pricing-card__features li {
    margin-bottom: .8rem;
}

.pricing-card button {
    margin-top: 1rem;
}

/* Fondo de la sección de precios */
.bg-gradient-alt {
    color: var(--text-color);
}

/* Responsive Pricing Grid */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    
}

.contact-benefits {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

/* Footer */
.footer {
    background: var(--footer-bg);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 2rem;
}

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

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

/* Background Shapes */
.background-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 10s infinite ease-in-out; /* Animación lenta y continua */
}

.shape--circle {
    width: 200px;
    height: 200px;
    background: #09d6ff;
    border-radius: 50%;
    top: 10%;
    left: 15%;
    animation-duration: 12s; /* Duración personalizada */
}

.shape--triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 200px solid #00D4FF;
    top: 50%;
    left: 70%;
    animation-duration: 15s; /* Duración personalizada */
}

.shape--square {
    width: 150px;
    height: 150px;
    background: #00D4FF;
    top: 80%;
    left: 30%;
    animation-duration: 18s; /* Duración personalizada */
}

/* Animación para las figuras geométricas */
@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -30px);
    }
    50% {
        transform: translate(-30px, 20px);
    }
    75% {
        transform: translate(-20px, -20px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* Cursor Effect */
body {
    cursor: none; /* Oculta el cursor predeterminado */
    text-align: justify;
}

/* Cursor personalizado */
.custom-cursor {
    position: fixed;
    top: -20px;
    left: -20px;
    width: 45px;
    height: 45px;
    background: #00D4FF;
    opacity: 0.6;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%); /* Centrar el círculo en el punto de clic */
    transition: transform 0.1s ease, background-color 0.2s ease;
}

.custom-cursor--hover {
    transform: translate(-50%, -50%) scale(1.5); /* Mantener el centro al agrandar */
    background-color: #00D4FF;
}

/* Contact Form */
.form {
    background: var(--color-bg-secondary);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 2px solid #00D4FF;
}

.form-group {
    margin-bottom: var(--space-4);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    color: var(--color-text-secondary);
}

.form-input {
    width: 100%;
    padding: var(--space-3);
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    color: var(--color-text);
    transition: var(--transition-all);
}

.form-input:focus {
    border-color: var(--color-accent-1);
    box-shadow: 0 0 0 2px rgba(110, 231, 249, 0.1);
    outline: none;
}

/* Examples Section */
.examples-grid {
    display: grid;
    gap: 4rem;
}

.example {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.example__text {
    flex: 1;
}

.example__image {
    flex: 1;
    text-align: center;
}

.example__image img {
    max-width: 80%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);

}

.example--reverse {
    flex-direction: row-reverse;
}


.caseof__image {
    flex: 1;
    text-align: center;    
    border-radius: 20px;
}

.caseof__image img {
    border: 2px solid #00D4FF !important;
    border-radius: 20px !important;
    max-width: 100%;
    height: 100%;

}

.example--reverse {
    flex-direction: row-reverse;
}


/*
Boton Multilenguaje
*/

/* Estilos para el botón de cambio de idioma */
.nav__link--language {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

.nav__link--language:hover {
  color: var(--primary-color);
}

.language-flag {
  font-size: 1.2rem;
}

/* Para la versión móvil */
@media (max-width: 768px) {
  .nav__link--language {
    padding: 1rem;
    justify-content: center;
  }
}


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

    .example--reverse {
        flex-direction: column;
    }
    .example__image {
    flex: 1;
    text-align: center;
}

.example__image img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

}
.example--reverse {
    flex-direction: row-reverse;
}

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

    .example--reverse {
        flex-direction: column;
    }
}

/* Logo dinámico */
.nav__logo img {
    width: 180px; /* Tamaño grande inicial */
    height: auto;
    transition: width 0.3s ease, height 0.3s ease;
}

.nav__logo--small img {
    width: 120px; /* Tamaño reducido al hacer scroll */
}
@media (max-width: 768px) {
    .example {
        flex-direction: column;
    }

    .example--reverse {
        flex-direction: column;
    }
}

/* Logo dinámico */
.nav__logo img {
    width: 180px; /* Tamaño grande inicial */
    height: auto;
    transition: width 0.3s ease, height 0.3s ease;
}

.nav__logo--small img {
    width: 120px; /* Tamaño reducido al hacer scroll */
}

/* Indicadores */
.indicators-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.indicator {
    width: 150px;
    height: 150px;
    background: rgb(51, 58, 72) !important;
    border: 2px solid #00D4FF;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.indicator:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.indicator__value {
    font-size: 2rem;
    font-weight: bold;
    color: #00D4FF;
}

.indicator__label {
    font-size: 1rem;
    color: var(--text-color-secondary);
    text-align: center;
}

/* Formulario de contacto */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#other-input {
    margin-top: 0.5rem;
}

/* CTA Final */
.cta-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
    

    .indicator__label {
        font-size: 1rem;
    }


    .social-links i{
        color: #fff !important ;
        font-size: 1.8rem !important ;
    }



/* Adjust styles for flag images */
.language-flag {
    width: 16px; /* Reduced size for better alignment */
    height: auto;
    margin-right: 8px;
    vertical-align: middle;
}

/* Ensure dropdown options are visible */
.nav__item--language {
    display: flex;
    align-items: center; /* Vertically center the content */
    position: relative;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: 100%; /* Align dropdown below the button */
    left: 0;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: max-content; /* Ensure dropdown width adjusts to content */
}

.language-dropdown li {
    list-style: none;
}

.language-dropdown .language-option {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
}

.language-dropdown .language-option:hover {
    background-color: #f0f0f0;
}

/* Show dropdown on hover */
.nav__item--language:hover .language-dropdown {
    display: block;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.checkbox-wrapper input[type="checkbox"] {
    margin: 0;
}

.checkbox-wrapper label {
    margin: 0;
    cursor: pointer;
}



.footer__links ul{
    list-style: none;
}