@import url('inteleanStyle.css');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--works);
}

body {
    background-color: var(--lightgray);
    color: var(--gray);
    line-height: 1.6;
    padding-top: 0px;
}

header {
    background-color: transparent;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    transition: all 0.35s ease;
    padding: 18px 30px;
}

#mainHeader.scrolled {
    background: #003d7a;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    padding: 0px 30px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 100%;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--neutro);
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #4CAF50
        /*#9fc7ff;*/
}

.nav-links a.active {
    font-weight: 800;
}

/*----------------------Hero----------------------------*/

.dropdown-featured,
.featured-header,
.featured-items,
.cta-small {}

.hero {
    background: var(--banner), url('../img/banner.webp') center 95%/cover no-repeat;
    background-attachment: fixed;
    color: var(--neutro);
    padding: 120px 5% 80px;
    text-align: left;
    min-height: 760px;
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    margin-top: 0;
}

.hero::before {
    display: none;
}

.hero-content {
    max-width: 500px;
    margin: 0;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.hero h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-button {
    display: inline-block;
    background: var(--button);
    color: var(--neutro);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-button:hover,
.cita-button:hover {
    transform: translateY(-3px);
}

.cita-button {
    display: inline-block;
    background: transparent;
    color: var(--neutro);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: 1px solid snow;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.features {
    background: var(--lightgray);
    padding: 40px 0;
}

.features-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature-card {
    flex: 1;
    text-align: center;
    padding: 25px 20px;
    position: relative;
}

.feature-card:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--bitgray);
}

.feature-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--icon);
    color: var(--neutro);
    font-size: 24px;
}

.feature-card h3 {
    margin: 0;
    font-weight: 600;
    color: var(--gray);
}

.feature-card p {
    font-size: 14px;
    color: #6c7a86;
    line-height: 1.5;
    max-width: 260px;
    margin: 15px auto 0;
    text-align: center;
}

/* ------- SUBMENÚ ------ */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -20px;
    width: calc(100% + 40px);
    height: 30px;
    background: transparent;
    z-index: 10000;
}

.dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-weight: 700;
    transition: all 0.2s ease;
}

.dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: currentColor;
    opacity: 0.7;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: fixed;
    top: 80px !important;
    left: 5vw !important;
    right: 5vw !important;
    width: auto !important;
    max-width: 1600px !important;
    margin: 0 auto !important;
    background: var(--lightgray);
    border-radius: 4px;
    border: lightgray 2px solid;
    box-shadow: var(--shadow);
    z-index: 9999;
    visibility: hidden;
    transform: translateY(-15px);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    will-change: transform, opacity, clip-path;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        clip-path 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%) !important;
}

.dropdown:not(:hover) .dropdown-menu,
.dropdown-menu:not(:hover) {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-15px) !important;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0) !important;
    transition-delay: 0.05s !important;
}

@media (min-width: 1400px) {
    .dropdown-menu {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 95%;
    }
}

/*------------------------------------------------ Menú Soluciones ------------------------------------------------------------*/
.menu-section-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--primary);
    margin: 0 0 15px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid rgba(0, 86, 179, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-section-title i {
    font-size: 1rem;
    color: var(--warning);
}

.menu-section-title span {
    flex: 1;
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1.5fr 1.5fr;
    gap: 20px;
    padding: 25px 20px;
    align-items: start;
}

.dropdown-col.primary-group {
    grid-column: span 3;
    display: flex;
    flex-direction: column;
}

.primary-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dropdown-col.primary {
    display: flex;
    width: 100%;
}

.secondary-wrapper {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
}

.secondary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.dropdown-col.secondary-group {
    display: flex;
    flex-direction: column;
}

.secondary-items-container {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dropdown-col.primary .dropdown-item {
    flex-direction: column;
    padding: 0;
    overflow: hidden;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
    transform: translateX(0);
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dropdown-col.primary .dropdown-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
    background: #fff;
}

.featured-img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    display: block;
}

.dropdown-col.primary .item-content {
    padding: 18px 16px 20px 16px;
    height: auto;
    min-height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dropdown-col.primary .item-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.dropdown-col.primary .item-content .product-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-col.primary .item-content .product-features li {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.dropdown-col.primary .item-content .product-features li i {
    color: #2E7D32;
    font-size: 0.8rem;
    min-width: 16px;
    margin-top: 2px;
}

.secondary-items-container .dropdown-item {
    padding: 10px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.2, 0.9, 0.4, 1);
}

.secondary-items-container .dropdown-item:hover {
    background: rgba(0, 86, 179, 0.1);
    transform: translateX(6px);
    box-shadow: 0 6px 12px rgba(0, 86, 179, 0.08);
}

.secondary-items-container .item-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.9rem;
    border-radius: 8px;
    background: var(--lightgray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.2s ease;
}

.secondary-items-container .dropdown-item:hover .item-icon {
    transform: scale(1.05);
    background: var(--primary);
    color: var(--neutro);
    box-shadow: var(--shadow);
}

.secondary-items-container .item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.secondary-items-container .item-content h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
    line-height: 1.3;
}

.secondary-items-container .item-content .product-benefit-short {
    font-size: 0.7rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
    display: block;
    max-width: 180px;
}

/* ---- MÓVIL ----- */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--neutro);
    transition: all 0.3s ease;
    z-index: 10000;
    order: 1;
}

.mobile-menu-toggle:hover {
    color: var(--secondary);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 9998;
    opacity: 8;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: all;
}


.mobile-menu-close {
    display: none;
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 10000;
}

@media (max-width: 1200px) {
    .dropdown-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .dropdown-col.primary-group {
        grid-column: span 4;
    }

    .primary-products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .secondary-wrapper {
        grid-column: span 4;
        margin-top: 20px;
    }

    .secondary-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 992px) {

    .mobile-menu-toggle {
        display: block;
        order: 1;
        font-size: 1.5rem;
        color: var(--neutro);
        cursor: pointer;
    }

    .nav-links.active .mobile-menu-close {
        display: block;
        color: var(--primary);
    }

    .nav-links.active~.mobile-menu-toggle {
        opacity: 0;
        visibility: hidden;
    }

    .nav-links.active~.mobile-menu-toggle {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }

    .mobile-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
    }

    .mobile-overlay.active {
        display: block;
    }

    .navbar {
        position: relative;
        padding: 0.8rem 5%;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .logo-img {
        height: 6vw;
        max-height: 150px;
        min-height: 50px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: center;
        padding: 80px 0 30px;
        transition: left 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        margin: 0;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-menu-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.8rem;
        color: var(--primary);
        cursor: pointer;
        display: none;
        z-index: 10000;
    }

    .nav-links.active .mobile-menu-close {
        display: block;
    }

    .nav-links>a,
    .dropdown>a {
        width: 90%;
        max-width: 400px;
        padding: 15px 20px;
        color: var(--primary);
        font-size: 1.1rem;
        text-align: center;
        border-bottom: 1px solid rgba(0, 86, 179, 0.1);
        margin: 0 auto;
    }

    .dropdown>a {
        justify-content: center;
        position: relative;
        padding-left: 40px;
        padding-right: 40px;
    }

    .dropdown>a .dropdown-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    .dropdown.active>a .dropdown-icon {
        transform: translateY(-50%) rotate(180deg);
    }

    .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .dropdown-menu {
        position: static !important;
        background: #f8f9fa;
        width: 90% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
        border-radius: 0px;
        max-height: 0;
        padding: 0 !important;
        overflow: hidden;
        transition: max-height 0.3s ease;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        clip-path: none !important;
        border: lightgray 0px solid;
    }

    .dropdown.active .dropdown-menu {
        max-height: 2000px !important;
        padding: 15px !important;
        margin-top: 10px !important;
    }

    .dropdown-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 !important;
        width: 100% !important;
    }

    .primary-products-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .secondary-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .dropdown-col.primary .dropdown-item {
        width: 100%;
        margin: 0;
    }

    .featured-img {
        height: 150px;
    }

    .menu-section-title {
        justify-content: center;
        width: 100%;
    }

    .hero {
        background: var(--banner), url('../img/bannercel.webp') center 0%/cover no-repeat;
        background-attachment: scroll;
        padding: 100px 5% 60px;
        height: 750px;
        margin-top: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }

    .hero-content {
        margin-top: 60px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 600px;
    }

    .hero h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.9rem;
        margin-bottom: 30px;
        text-align: center;
        max-width: 500px;
    }

    .button-group {
        display: block;
        justify-content: center;
        gap: 20px;
        margin-top: 0px;
        width: 50%;
    }

    .button-group .cita-button,
    .button-group .cta-button {
        display: block;
        padding: 1rem 2.5rem;
        font-weight: 500;
        font-size: 0.9rem;
        white-space: nowrap;
        margin: 0;
        margin-top: 10px;
    }

    .features-container {
        flex-direction: column;
        padding: 0 5%;
    }

    .feature-card:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .dropdown-grid {
        padding: 15px;
    }

    .secondary-items-container .item-content .product-benefit-short {
        max-width: 100%;
    }

    .hero {
        padding: 90px 5% 50px;
        min-height: 500px;
    }

}

@media (max-width: 576px) {
    .nav-links {
        padding: 70px 0 20px 0;
    }

    .nav-links>a,
    .dropdown>a {
        width: 92%;
        padding: 12px 15px;
        font-size: 1rem;
    }

    .dropdown-grid {
        padding: 0 10px !important;
    }

    .secondary-items-container .dropdown-item {
        padding: 10px;
    }

    .secondary-items-container .item-content h4 {
        font-size: 0.9rem;
    }

    .secondary-items-container .product-benefit-short {
        font-size: 0.7rem;
    }

    .logo-img {
        height: 30px;
    }

    .menu-section-title {
        font-size: 0.8rem;
        padding: 0 10px 8px 10px;
    }

    .hero {
        padding: 80px 5% 40px;
        min-height: 450px;
    }

}

/*-------------------------------------------------------------------------------------------------------------*/
.footer {
    background: #0a2a4a;
    border-top: 1px solid #1b3f6b;
    padding: 60px 5% 30px;
}

/* CONTENEDOR */

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* COLUMNAS */

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* TITULOS */

.footer-col h4, p {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* LINKS */

.footer-col a {
    text-decoration: none;
    color: #c7d4e5;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #4CAF50;
}

/* LOGO */

.footer-brand img {
    height: 25px;
    width: 100px;
    margin-bottom: 10px;
}

/* TEXTO DESCRIPCIÓN */

.footer-brand p {
    color: #b8c6da;
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 300px;
}

/* REDES */

.footer-social {
    margin-top: 10px;
    display: flex;
    gap: 15px;
}

.footer-social a {
    font-size: 0.9rem;
    color: #c7d4e5;
}

.footer-social a:hover {
    color: #4CAF50;
}

/* BOTON */

.footer-btn {
    margin-top: 10px;
    background: var(--button);
    color:  var(--gray-100) !important;
    padding: 10px 18px;
    border-radius: 6px;
    text-align: center;
    width: fit-content;
    transition: 0.3s;
}

.footer-btn:hover {
    background: var(--secondary);
    color:var(--gray-100) !important
}

/* PARTE INFERIOR */

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #1b3f6b;
    font-size: 0.85rem;
    color: #9fb3cc;
}

/* RESPONSIVE */

@media (max-width:900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}



/* ===== STATS MINIMAL SECTION ===== */
.intelean-stats {
    background: #ffffff;
    padding: 70px 0;
    width: 100%;
    border-top: 1px solid rgba(0, 86, 179, 0.1);
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.intelean-stats>h2 {
    max-width: 940px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 500;
    color: #2E2E2E;
    padding: 0 5%;
}

.intelean-stats .container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 0 5%;
    align-items: center;
}

/* Imagen minimalista */
.stats-image {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.stats-image img {
    width: 100%;
    height: 80%;
    object-fit: cover;
    display: block;
    filter: grayscale(10%);
    transition: filter 0.4s ease;
}

.stats-image:hover img {
    filter: grayscale(0%);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 86, 179, 0.02), rgba(76, 175, 80, 0.02));
    pointer-events: none;
}

/* Grid de estadísticas minimalista */
.stats-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: -80px;
}

.stat-box {
    padding: 0;
    text-align: left;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.stat-box:hover {
    border-bottom-color: var(--primary);
}

.stat-box h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
    line-height: 1.1;
}

.stat-box h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-box p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

/* Responsive minimalista */
@media (max-width: 992px) {
    .intelean-stats {
        padding: 60px 0;
    }

    .intelean-stats>h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .intelean-stats .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats-image {
        height: 350px;
    }

    .stats-image img {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .intelean-stats>h2 {
        font-size: 1.5rem;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-box {
        border-bottom: 1px solid rgba(0, 86, 179, 0.1);
        padding-bottom: 20px;
        text-align: center;
    }

    .stat-box:last-child {
        border-bottom: none;
    }

    .stat-box h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .intelean-stats {
        padding: 40px 0;
    }

    .intelean-stats>h2 {
        font-size: 1.3rem;
    }

    .stats-image {
        height: 250px;
    }
}


/* ===== PRODUCT SECTIONS ===== */
.datatracking-hero,
.andon-section {
    background: #ffffff;
    padding: 70px 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.datatracking-hero:last-of-type {
    border-bottom: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Grid para secciones con imagen a la derecha */
.datatracking-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Grid para sección Andon (imagen a la izquierda) */
.andon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Contenido de texto */
.datatracking-hero-text,
.andon-content {
    max-width: 550px;
}

.datatracking-hero-title,
.andon-title {
    font-size: 2rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.datatracking-hero-desc,
.andon-subtitle {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

/* Listas */
.datatracking-hero-list,
.andon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.datatracking-hero-list li,
.andon-list li {
    font-size: 0.95rem;
    color: #2E2E2E;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
    font-weight: 400;
    line-height: 1.5;
}

/* Checkmarks minimalistas */
.datatracking-hero-list li::before,
.andon-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 300;
}

/* Imágenes */
.datatracking-hero-img,
.andon-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
}

.datatracking-hero-img img,
.andon-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(10%);
    transition: filter 0.4s ease;
}

.datatracking-hero-img:hover img,
.andon-img:hover img {
    filter: grayscale(0%);
}

/* Responsive */
@media (max-width: 992px) {

    .datatracking-hero,
    .andon-section {
        padding: 60px 0;
    }

    .datatracking-hero-grid,
    .andon-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .datatracking-hero-text,
    .andon-content {
        max-width: 100%;
    }

    .datatracking-hero-title,
    .andon-title {
        font-size: 1.8rem;
    }

    .datatracking-hero-img,
    .andon-img {
        height: 350px;
        order: -1;
        /* Imagen siempre arriba en móvil */
    }


}

@media (max-width: 768px) {

    .datatracking-hero,
    .andon-section {
        padding: 50px 0;
    }

    .datatracking-hero-title,
    .andon-title {
        font-size: 1.5rem;
    }

    .datatracking-hero-img,
    .andon-img {
        height: 300px;
    }

    .datatracking-hero-list li,
    .andon-list li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {

    .datatracking-hero,
    .andon-section {
        padding: 40px 0;
    }

    .datatracking-hero-title,
    .andon-title {
        font-size: 1.3rem;
    }

    .datatracking-hero-desc,
    .andon-subtitle {
        font-size: 0.95rem;
    }

    .datatracking-hero-img,
    .andon-img {
        height: 250px;
    }
}


/* ===== SECONDARY PRODUCTS SHOWCASE ===== */
.secondary-products {
    background: #fafbfc;
    padding: 90px 0;
    width: 100%;
    border-top: 1px solid rgba(0, 86, 179, 0.1);
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.secondary-products .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5%;
}

.secondary-products-title {
    text-align: center;
    margin-bottom: 60px;
}

.secondary-products-title .title-light {
    font-size: 1.2rem;
    font-weight: 400;
    color: #666;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.secondary-products-title .title-bold {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    display: block;
}

/* Grid de productos secundarios */
.secondary-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    width: 100%;
}

/* Tarjetas estilo menú soluciones */
.secondary-product-card {
    background: white;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 86, 179, 0.08);
    display: flex;
    flex-direction: column;
}

.secondary-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 61, 122, 0.15);
    border-color: var(--primary);
}

/* Imagen superior */
.secondary-product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.secondary-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.secondary-product-card:hover .secondary-product-image img {
    transform: scale(1.1);
}

/* Overlay sutil en imagen */
.secondary-product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, rgba(0, 86, 179, 0.1), rgba(76, 175, 80, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.secondary-product-card:hover .secondary-product-image::after {
    opacity: 1;
}

/* Contenido de la tarjeta */
.secondary-product-content {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.secondary-product-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 0;
    line-height: 1.3;
}

.secondary-product-description {
    font-size: 0.8rem;
    color: #4a5a6a;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Lista de beneficios */
.secondary-product-benefits {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.secondary-product-benefits li {
    font-size: 0.75rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.secondary-product-benefits li i {
    color: var(--secondary);
    font-size: 0.9rem;
    min-width: 18px;
    margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
    .secondary-products {
        padding: 70px 0;
    }

    .secondary-products-title .title-light {
        font-size: 1rem;
    }

    .secondary-products-title .title-bold {
        font-size: 2rem;
    }

    .secondary-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .secondary-products {
        padding: 60px 0;
    }

    .secondary-products-title {
        margin-bottom: 40px;
    }

    .secondary-products-title .title-bold {
        font-size: 1.8rem;
    }

    .secondary-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 450px;
        margin: 0 auto;
    }

    .secondary-product-image {
        height: 180px;
    }

    .secondary-product-content {
        padding: 20px 15px;
    }

    .secondary-product-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .secondary-products {
        padding: 50px 0;
    }

    .secondary-products-title .title-bold {
        font-size: 1.5rem;
    }

    .secondary-product-image {
        height: 160px;
    }
}


/* Aplicar a ambas listas */

.datatracking-hero-list,
.andon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.datatracking-hero-list li,
.andon-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
}


.datatracking-hero-list li::before,
.andon-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #4CAF50;
    font-weight: 600;
}

/* ===== PYME CTA SECTION ===== */

.pyme-cta-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--neutro);
    isolation: isolate;
}

.pyme-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg,
            rgba(0, 61, 122, 0.80) 100%,
            rgba(76, 175, 80, 0.85) 20%);
    z-index: 1;
    backdrop-filter: blur(2px);
}

/* Contenido por encima de la capa */
.pyme-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 3rem 5%;
    margin: 0 auto;
}

.pyme-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.pyme-cta-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.pyme-cta-content .accent-text {
    color: var(--warning);
    font-weight: 700;
    text-decoration: underline 3px var(--secondary);
    text-underline-offset: 8px;
}

.pyme-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 300;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.pyme-highlight {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 60px;
    padding: 1rem 2rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    font-size: 1.3rem;
}

.pyme-highlight i {
    color: var(--secondary);
    font-size: 1.8rem;
}

.pyme-highlight strong {
    font-weight: 700;
    color: var(--secondary);
}

.pyme-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.pyme-cta-buttons .btn-primary,
.pyme-cta-buttons .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.pyme-cta-buttons .btn-primary {
    background: var(--secondary);
    color: var(--neutro);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.4);
}

.pyme-cta-buttons .btn-primary:hover {
    background: #2E7D32;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(76, 175, 80, 0.5);
}

.pyme-cta-buttons .btn-secondary {
    background: transparent;
    color: var(--neutro);
    border: 2px solid var(--neutro);
    backdrop-filter: blur(4px);
}

.pyme-cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.pyme-note {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Responsive */
@media (max-width: 992px) {
    .pyme-cta-section {
        min-height: 550px;
        background-attachment: scroll;
        /* Quita parallax en móvil */
    }

    .pyme-cta-content h2 {
        font-size: 2.2rem;
    }

    .pyme-description {
        font-size: 1.1rem;
    }

    .pyme-highlight {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .pyme-cta-content h2 {
        font-size: 1.8rem;
    }

    .pyme-description {
        font-size: 1rem;
    }

    .pyme-cta-buttons .btn-primary,
    .pyme-cta-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .pyme-highlight {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .pyme-cta-content h2 {
        font-size: 1.5rem;
    }

    .pyme-badge {
        font-size: 0.8rem;
    }
}

/* ===== MODAL MINIMALISTA ===== */
.modal-minimal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-minimal-content {
    background: white;
    margin: 80px auto;
    padding: 40px;
    max-width: 450px;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-minimal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.8rem;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    line-height: 1;
    transition: color 0.2s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-minimal-close:hover {
    color: var(--primary);
    background: rgba(0, 86, 179, 0.05);
}

.modal-minimal-header {
    text-align: left;
    margin-bottom: 30px;
}

.modal-minimal-header h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2E2E2E;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.modal-minimal-subtitle {
    font-size: 0.95rem;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

/* Formulario minimalista */
.modal-minimal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-minimal-group {
    width: 100%;
}

.form-minimal-group input,
.form-minimal-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    background: white;
    transition: all 0.2s ease;
    color: #2E2E2E;
}

.form-minimal-group input:focus,
.form-minimal-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
}

.form-minimal-group input::placeholder {
    color: #aaa;
    font-weight: 300;
}

.form-minimal-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

.btn-minimal-submit {
    background: var(--primary);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 8px;
}

.btn-minimal-submit:hover {
    background: #002856;
    transform: translateY(-1px);
}

.form-minimal-note {
    font-size: 0.75rem;
    color: #999;
    text-align: center;
    margin: 8px 0 0 0;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 576px) {
    .modal-minimal-content {
        margin: 60px 20px;
        padding: 30px 25px;
    }

    .modal-minimal-header h2 {
        font-size: 1.6rem;
    }

    .form-minimal-group input,
    .form-minimal-group select {
        padding: 12px 14px;
    }
}

/*------------Contacto-----------------*/

.contact-intelean {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-header h2 {
    font-size: 42px;
    font-weight: 300;
    color: #003d7a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-header h2 span {
    font-weight: 700;
    color: #4CAF50;
    position: relative;
    display: inline-block;
}

.contact-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(76, 175, 80, 0.2);
    z-index: -1;
}

.contact-header p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

/* Video */
.contact-video {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 61, 122, 0.15);
    border: 1px solid rgba(0, 61, 122, 0.1);
    width: 100%;
}

.contact-video iframe {
    display: block;
    width: 100%;
    height: 380px;
}

.contact-image {
    width: 100%;
    height: auto;
    max-width: 560px;
    /* Limita el ancho máximo */
    max-height: 315px;
    /* Limita la altura máxima */
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 20px 40px rgba(0, 61, 122, 0.15);
    display: block;
    margin: 0 auto;
    /* Centra la imagen si es más pequeña que el contenedor */
}

/* Formulario */
.contact-right {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 61, 122, 0.08);
    border: 1px solid rgba(0, 61, 122, 0.1);
}

/* Formulario grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.input-group {
    position: relative;
}

.input-group.full {
    grid-column: 1 / -1;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #003d7a;
    margin-bottom: 6px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 2px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 100px;
}



/* CAPTCHA */
.captcha-box {
    margin: 25px 0 20px;
    display: flex;
    justify-content: center;
    background: #f8fafc;
    padding: 15px;
    border-radius: 10px;
}

/* Alertas */
.contact-alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.contact-alert.success {
    background: #f0fdf4;
    color: #2e7d32;
    border: 1px solid #4CAF50;
}

.contact-alert.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #dc2626;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botón */
.btn-contact {
    width: 100%;
    padding: 16px 30px;
    background: linear-gradient(135deg, #003d7a, #002b5c);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #4CAF50, #2e7d32);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.btn-contact:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    background: #94a3b8;
    transform: none;
    box-shadow: none;
}

.btn-loader {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: white;
}

/* Estilo para los radio buttons */
.input-group input[type="radio"] {
    width: auto;
    margin-right: 5px;
}

.input-group label {
    font-weight: normal;
    margin-bottom: 0;
}


/* Estilo para selects - igual que los inputs */
.input-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
    appearance: none;
    /* Elimina el estilo nativo del select */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23003d7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    /* Espacio para la flecha */
    color: gray;
}

.input-group select:hover {
    border-color: #4CAF50;
    background-color: #ffffff;
}

.input-group select:focus {
    outline: none;
    border-color: #4CAF50;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Estilo para las opciones del select */
.input-group select option {
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #1e293b;
}

/* Para navegadores que soportan estilos de option */
.input-group select option:hover {
    background: #4CAF50;
    color: white;
}

/* Estilo cuando el select está deshabilitado o tiene placeholder */
.input-group select:invalid {
    color: #94a3b8;
}

/* Versión con degradado (si prefieres la opción que mencionaste antes) */
.input-group select.degradado {
    background: linear-gradient(145deg, rgba(0, 61, 122, 0.02) 0%, rgba(0, 61, 122, 0.05) 100%);
    backdrop-filter: blur(4px);
}

/* Estilo para los radio buttons */
.input-group input[type="radio"] {
    width: auto;
    margin-right: 8px;
    accent-color: #4CAF50;
    /* Color del radio button */
    transform: scale(1.1);
    cursor: pointer;
}

/* Contenedor de radio buttons */
.radio-group {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 10px 0 15px;
    padding: 5px 0;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-size: 14px;
    color: #1e293b;
}

.radio-option:hover {
    color: #4CAF50;
}

/* Estilo para el select con banderas */
.country-select {
    width: 100%;
    padding: 12px 16px 12px 40px;
    /* Espacio a la izquierda para la bandera */
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23003d7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"),
        linear-gradient(145deg, rgba(0, 61, 122, 0.02) 0%, rgba(0, 61, 122, 0.05) 100%);
    background-repeat: no-repeat, repeat;
    background-position: right 16px center, 0 0;
    background-size: 16px, auto;
}

.country-select:hover {
    border-color: #4CAF50;
    background-color: #ffffff;
}

.country-select:focus {
    outline: none;
    border-color: #4CAF50;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

/* Estilo para las opciones del select */
.country-select option {
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    background: white;
    color: #1e293b;
}

/* Solución con emojis (funciona en todos los navegadores modernos) */
.country-select option {
    font-family: 'Poppins', 'Apple Color Emoji', 'Segoe UI Emoji', 'Noto Color Emoji', sans-serif;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        /* Una sola columna en móvil */
        gap: 40px;
    }

    .contact-left {
        gap: 30px;
    }

    .contact-header {
        text-align: center;
    }

    .contact-right {
        position: static;
        /* Quitar sticky en móvil */
    }
}

@media (max-width: 768px) {
    .contact-intelean {
        padding: 60px 0;
    }

    .contact-header h2 {
        font-size: 32px;
    }

    .contact-header p {
        font-size: 16px;
    }

    .contact-card {
        padding: 30px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-video iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 28px;
    }

    .btn-contact {
        padding: 14px 20px;
        font-size: 15px;
    }

    .contact-video iframe {
        height: 200px;
    }
}