/* Estilos generales */
* {
    box-sizing: border-box;
}

/* Optimización de carga de imágenes */
img {
    max-width: 100%;
    height: auto;
    image-rendering: optimizeQuality;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    max-width: 100%;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-container {
        background-image: url('alphapyme-hero-2025.png?refresh=20251003100521');
        -webkit-transform: scale(1.001);
        transform: scale(1.001);
    }
}

body {
    font-family: "Segoe UI Variable Small","Segoe UI",segoeui,"Helvetica Neue",helvetica,arial,sans-serif;
    padding-top: 0; 
    background-image: url('fondo.avif');
    color: #333;
}

.hero-container, 
.subheader-navigation, 
.main-section, 
.clients-bar-section,
.faq-section,
.footer,
.header-section,
.accordion-container {
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

.toolbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(204, 204, 204, 0.3);
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001; 
    transition: transform 0.3s ease; 
}

.toolbar.hidden {
    transform: translateY(-100%); 
}

.toolbar-left {
    display: flex;
    align-items: center;
}

.toolbar-left .logo {
    height: 24px;
    margin-right: 15px;
}

.toolbar-left .brand-name {
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.toolbar-right {
    display: flex;
    align-items: center;
}

.toolbar-link {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    padding: 10px 15px;
    transition: color 0.3s ease;
}

.toolbar-link:hover {
    color: #005a9e; 
}

.toolbar-button {
    background-color: #000;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    margin-left: 10px;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    font-size: 20px;
    padding: 8px;
    border: none;
    background: none;
    color: #323130;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.hamburger-menu:hover {
    background-color: #f3f2f1;
}

.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Sidebar  */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateX(0);
    transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.mobile-sidebar.show {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #edebe9;
    background-color: #f8f9fa;
}

.sidebar-close {
    float: right;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #605e5c;
    padding: 4px;
    border-radius: 2px;
    transition: background-color 0.2s ease;
}

.sidebar-close:hover {
    background-color: #e1dfdd;
}

.sidebar-content {
    padding: 0;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-item {
    border-bottom: 1px solid #f3f2f1;
}

.sidebar-nav-item a {
    display: block;
    padding: 16px 20px;
    color: #323130;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.2s ease;
}

.sidebar-nav-item a:hover {
    background-color: #f8f9fa;
    color: #106ebe;
}

.sidebar-nav-item.primary a {
    background-color: #0078d4;
    color: #ffffff;
    font-weight: 600;
}

.sidebar-nav-item.primary a:hover {
    background-color: #106ebe;
}

     @media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .toolbar-right {
        display: none;
    }
    
    .toolbar-link {
        display: none;
    }
    
    .sidebar-nav-item.primary a {
        background-color: #ffffff;
        color: #0078d4;
        font-weight: 600;
        border: 1px solid #e1e5e9;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }
    
    .sidebar-nav-item.primary a:hover {
        background-color: #f8f9fa;
        color: #106ebe;
        border: 1px solid #0078d4;
        box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
    }
}

@media (max-width: 480px) {
    .mobile-sidebar {
        width: 280px;
        right: -280px;
    }
    

}

@media (max-width: 360px) {
    .mobile-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .sidebar-nav-item.primary a {
        background-color: #ffffff;
        color: #0078d4;
        border: 1px solid #e1e5e9;
        font-size: 13px;
        padding: 12px 16px;
    }
}

.mobile-overlay {
    backdrop-filter: blur(2px);
}

.mobile-sidebar {
    -webkit-overflow-scrolling: touch;
}

.hero-container {
    background-image: url('alphapyme-hero-2025.png?refresh=20251003100521');
    background-size: cover; 
    background-position: center right;
    background-repeat: no-repeat;
    background-attachment: scroll;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    image-rendering: optimizeQuality;
    image-rendering: high-quality;
    -webkit-filter: contrast(1.05) saturate(1.1) brightness(1.02);
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform; 
    height: 100vh; 
    min-height: 100vh;
    color: #fff; 
    display: flex;
    align-items: center; 
    padding-left: 5%; 
    padding-top: 0; 
    position: relative;
    z-index: 1;
}

.hero-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0.05) 100%);
    z-index: -1;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.hero-text {
    text-align: left;
    max-width: 500px; 
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin: 0 0 10px 0;
    line-height: 1.2;
    color: #fff;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text p {
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-buttons-main {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.hero-buttons-demo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    text-align: left;
    margin: 0;
    padding-left: 65px;
}

.hero-buttons a {
    text-decoration: none;
    color: #fff;
    background-color: #000;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-buttons a.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.hero-buttons a.secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}

.hero-buttons a.demo-button {
    background: linear-gradient(45deg, #0078d4, #00bcf2);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
}

.hero-buttons a.demo-button:hover {
    background: linear-gradient(45deg, #106ebe, #0099cc);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
}

.hero-buttons a.demo-button i {
    margin-right: 8px;
}

/* Media queries para hero en responsive */
@media (max-width: 768px) {
    .hero-container {
        height: 100vh;
        min-height: 100vh;
        padding-left: 5%;
        padding-right: 5%;
        align-items: center;
        background-position: 70% center;
    }
    
    .hero-container::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    }
    
    .hero-text {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        align-items: center;
    }
    
    .hero-buttons-main {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        justify-content: center;
    }
    
    .hero-buttons-main a:first-child {
        border: 2px solid #ffffff !important;
        background-color: #000000;
        color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    }
    
    .hero-buttons-main a:first-child:hover {
        background-color: #333333;
        border: 2px solid rgba(255, 255, 255, 0.9) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
        transform: translateY(-2px);
    }
    
    .hero-buttons-demo {
        justify-content: center;
        padding-left: 0;
        margin-top: 10px;
    }
    

}

@media (max-width: 480px) {
    .hero-container {
        height: 100vh;
        min-height: 100vh;
        align-items: center;
        background-position: 75% center;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .hero-container::before {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.4) 100%);
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .hero-buttons-main a:first-child {
        border: 2px solid #ffffff !important;
        background-color: #000000;
        color: #ffffff;
        font-size: 0.95rem;
        padding: 11px 22px;
    }
    
    .hero-buttons-main a:first-child:hover {
        background-color: #333333;
        border: 2px solid rgba(255, 255, 255, 0.9) !important;
    }

}

/* ============ INICIO ESTILOS SUBHEADER  ============ */
.subheader-navigation {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    top: 50px; 
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(-100%); 
    transition: transform 0.3s ease; 
}

.subheader-navigation.show {
    transform: translateY(0); 
}

.subheader-navigation.toolbar-hidden {
    top: 0; 
}

.subheader-nav {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
}

.subheader-link {
    text-decoration: none;
    color: #605e5c;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.subheader-link:hover {
    background-color: #f3f2f1;
    color: #323130;
}

.subheader-link.active {
    background-color: #000000;
    color: #ffffff;
    font-weight: 500;
}

.subheader-link.active:hover {
    background-color: #000102;
    color: #ffffff;
}

.subheader-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    background-color: #000000;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background-color: #106ebe;
}

@media (max-width: 768px) {
    .subheader-navigation {
        flex-direction: column;
        gap: 15px;
        padding: 15px 10px;
        position: static; 
    }
    
    .subheader-nav {
        overflow-x: auto;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
        padding-bottom: 5px;
        flex: 1;
        display: flex;
        gap: 5px;
        align-items: center;
    }
    
    .subheader-nav::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .subheader-link {
        font-size: 12px;
        padding: 8px 14px;
        flex-shrink: 0;
        white-space: nowrap;
        border-radius: 16px;
    }
    
    .subheader-cta {
        display: none; 
    }
    
@media (max-width: 480px) {
    .subheader-navigation {
        padding: 10px 12px;
        gap: 5px;
    }
    
    .subheader-link {
        font-size: 11px;
        padding: 6px 12px;
        border-radius: 14px;
    }
    
    .subheader-nav {
        gap: 3px;
    }
}

@media (max-width: 360px) {
    .subheader-navigation {
        padding: 8px 10px;
    }
    
    .subheader-link {
        font-size: 10px;
        padding: 5px 10px;
        border-radius: 12px;
    }
    
    .subheader-nav {
        gap: 2px;
    }
}

    .cta-button {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .subheader-link {
        font-size: 12px;
        padding: 8px 12px;
    }
}
/* ============ FIN ESTILOS SUBHEADER  ============ */

/* ============ ESTILOS SECCIONES  ============ */
.main-section {
    padding: 80px 20px;
    min-height: 400px;
    border-bottom: 1px solid #e1e5e9;
}

.main-section:last-of-type {
    border-bottom: none;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-content h2 {
    font-size: 2.5em;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
}

.section-content p {
    font-size: 1.2em;
    color: #605e5c;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .main-section {
        padding: 60px 15px;
        min-height: 300px;
    }
    
    .section-content h2 {
        font-size: 2em;
    }
    
    .section-content p {
        font-size: 1.1em;
    }
}
/* ============ FIN ESTILOS SECCIONES  ============ */

.header-section {
    width: 100%;
    padding: 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 1200px;
    box-sizing: border-box;
}

.header-section .subtitle {
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 10px;
}

.header-section h1 {
    font-weight: 600;
    color: #2c2c2c;
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.1;
}

.tabs-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #e0dcd7;
    color: #2c2c2c;
}

.tab-button.active {
    background-color: #2c2c2c;
    color: #fff;
}

/* ============ ACORDEÓN ============ */
.accordion-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

.accordion-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin: 40px 0;
    width: 100%;
    justify-content: center;
}

.accordion-content.active {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
}

.accordion-left {
    flex: 1;
    min-width: 400px;
}

.accordion-right {
    flex: 1;
    min-width: 400px;
}

.accordion-item {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
}

.accordion-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.accordion-item.active {
    border-color: #0078d4;
    box-shadow: 0 4px 20px rgba(0, 120, 212, 0.2);
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #ffffff;
    position: relative;
    border: none;
    margin: 0;
}

.accordion-header::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: transparent;
    transition: background 0.3s ease;
}

.accordion-header:hover {
    background-color: #f8f9fa;
}

.accordion-header:hover::before {
    background: #0078d4;
}

.accordion-item.active .accordion-header {
    background-color: #f8f9fa;
}

.accordion-item.active .accordion-header::before {
    background: #0078d4;
}

.accordion-header h3 {
    margin: 0;
    font-size: 1.2em;
    font-weight: 600;
    color: #323130;
    flex: 1;
}

.accordion-icon {
    font-size: 1.2em;
    color: #605e5c;
    transition: transform 0.3s ease;
    font-weight: bold;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-body {
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 0;
    padding: 0 15px;
}

.accordion-item.active .accordion-body {
    max-height: 200px;
    padding: 0 15px 20px 15px;
}

.accordion-body p {
    margin: 0;
    color: #605e5c;
    line-height: 1.6;
    font-size: 1em;
}

.accordion-image-container {
    position: relative;
    background: linear-gradient(135deg, #2c2c2c, #1a1a1a);
    border-radius: 12px;
    padding: 20px;
    overflow: hidden;
}

.accordion-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-image:hover {
    transform: scale(1.02);
}

@media (max-width: 1024px) {
    .accordion-content {
        gap: 40px;
    }
    
    .accordion-left {
        min-width: 350px;
    }
    
    .accordion-right {
        min-width: 350px;
    }
}

@media (max-width: 768px) {
    .accordion-content {
        flex-direction: column !important;
        gap: 0px;
        align-items: stretch;
    }
    
    .accordion-content.active {
        flex-direction: column !important;
        gap: 0px;
        align-items: stretch;
    }
    
    .accordion-left {
        width: 100%;
        max-width: 100%;
        min-width: auto;
    }
    
    .accordion-right {
        display: none !important;
    }
    
    .accordion-header {
        padding: 18px 20px;
        text-align: left;
    }
    
    .accordion-header h3 {
        font-size: 1.1em;
        padding-right: 10px;
    }
    
    .accordion-item.active .accordion-body {
        max-height: 500px;
        padding: 0 20px 20px 20px;
    }
    
    .accordion-body {
        padding: 0 20px;
    }
    
    .accordion-item.active .accordion-body::after {
        content: "";
        display: block;
        width: 100%;
        height: 200px;
        margin-top: 15px;
        border-radius: 8px;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #f8f9fa;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        border: 1px solid #e1e5e9;
    }
    
    .accordion-item.active[data-image] .accordion-body::after {
        background-image: url('feat1-v2.jpg');
    }
    
    .accordion-item:nth-child(1).active .accordion-body::after {
        background-image: url('feat1-v2.jpg');
    }
    
    .accordion-item:nth-child(2).active .accordion-body::after {
        background-image: url('feat2-v2.jpg');
    }
    
    .accordion-item:nth-child(3).active .accordion-body::after {
        background-image: url('feat3-v2.jpg');
    }
    
    .accordion-item:nth-child(4).active .accordion-body::after {
        background-image: url('feat4-v2.jpg');
    }
}

@media (max-width: 480px) {
    .accordion-container {
        padding: 0 15px;
    }
    
    .accordion-content {
        gap: 0px;
    }
    
    .accordion-header {
        padding: 15px 18px;
    }
    
    .accordion-header h3 {
        font-size: 1em;
        line-height: 1.3;
    }
    
    .accordion-body p {
        font-size: 0.9em;
        line-height: 1.5;
    }
    
    .accordion-item.active .accordion-body {
        max-height: 450px;
        padding: 0 18px 18px 18px;
    }
    
    .accordion-body {
        padding: 0 18px;
    }
    
    /* Ajustar la imagen integrada para pantallas pequeñas */
    .accordion-item.active .accordion-body::after {
        height: 150px;
        margin-top: 12px;
        border-radius: 6px;
        background-size: contain;
        background-color: #f8f9fa;
        border: 1px solid #e1e5e9;
    }
}

@media (max-width: 360px) {
    .accordion-container {
        padding: 0 10px;
    }
    
    .accordion-content {
        gap: 0px;
    }
    
    .accordion-header {
        padding: 12px 15px;
    }
    
    .accordion-header h3 {
        font-size: 0.95em;
    }
    
    .accordion-body p {
        font-size: 0.85em;
    }
    
    .accordion-item.active .accordion-body {
        max-height: 400px;
        padding: 0 15px 15px 15px;
    }
    
    .accordion-body {
        padding: 0 15px;
    }
    
    .accordion-item.active .accordion-body::after {
        height: 120px;
        margin-top: 10px;
        border-radius: 6px;
        background-size: contain;
        background-color: #f8f9fa;
        border: 1px solid #e1e5e9;
    }
}

/* Media queries para header-section */
@media (max-width: 768px) {
    .header-section {
        padding: 30px 20px;
        text-align: center;
    }
    
    .header-section h1 {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    
    .header-section .subtitle {
        font-size: 0.8em;
    }
}

@media (max-width: 480px) {
    .header-section {
        padding: 25px 15px;
    }
    
    .header-section h1 {
        font-size: 1.5em;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .header-section .subtitle {
        font-size: 0.75em;
        margin-bottom: 8px;
    }
}

@media (max-width: 360px) {
    .header-section {
        padding: 20px 10px;
    }
    
    .header-section h1 {
        font-size: 1.3em;
        margin-bottom: 15px;
    }
}
/* ============ FIN  ACORDEÓN ============ */

/* ============ INICIO(CARDS) ============ */
.visit-cards-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.visit-cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="a" cx="50%" cy="50%"><stop offset="0%" stop-color="%23ff6b6b" stop-opacity="0.05"/><stop offset="50%" stop-color="%234ecdc4" stop-opacity="0.05"/><stop offset="100%" stop-color="%2345b7d1" stop-opacity="0.05"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23a)"/></svg>') center/cover;
    pointer-events: none;
}

.visit-cards-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.visit-cards-header {
    text-align: center;
    margin-bottom: 60px;
}

.visit-cards-header .subtitle {
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 15px;
}

.visit-cards-header h2 {
    font-size: 2.5em;
    color: #2c2c2c;
    margin-bottom: 20px;
    font-weight: 600;
}

.visit-description {
    font-size: 1.2em;
    color: #605e5c;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.visit-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.visit-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
    height: 400px;
}

.visit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.visit-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.visit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.visit-card:hover .visit-card-image img {
    transform: scale(1.1);
}

.visit-card-content {
    padding: 25px;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.visit-card-content h3 {
    font-size: 1.4em;
    color: #2c2c2c;
    margin: 0 0 15px 0;
    font-weight: 600;
    line-height: 1.3;
}

.visit-card-content p {
    color: #605e5c;
    font-size: 1em;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.visit-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 120, 212, 0.95), rgba(0, 188, 242, 0.95));
    color: white;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.visit-card:hover .visit-card-overlay {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.visit-card-overlay-content h3 {
    font-size: 1.5em;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.visit-card-overlay-content p {
    font-size: 1em;
    line-height: 1.6;
    margin: 0 0 25px 0;
    opacity: 0.95;
}

.visit-card-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.visit-card-features span {
    font-size: 0.9em;
    padding: 5px 0;
    border-left: 3px solid rgba(255, 255, 255, 0.7);
    padding-left: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-weight: 500;
}

/* Media queries para visit cards */
@media (max-width: 768px) {
    .visit-cards-section {
        padding: 60px 15px;
    }
    
    .visit-cards-header h2 {
        font-size: 2em;
    }
    
    .visit-description {
        font-size: 1.1em;
    }
    
    .visit-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .visit-card {
        height: auto;
        min-height: 350px;
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }
    
    .visit-card:hover {
        transform: none; 
        box-shadow: 0 8px 25px rgba(0, 120, 212, 0.15);
    }
    
    .visit-card-image {
        height: 180px;
    }
    
    .visit-card-content {
        padding: 20px;
        height: auto;
        min-height: 170px;
        position: relative;
    }
    
    .visit-card-content h3 {
        font-size: 1.2em;
    }
    
    .visit-card-content::after {
        content: "📱 Toca para ver más";
        position: absolute;
        bottom: 10px;
        right: 20px;
        font-size: 0.8em;
        color: #0078d4;
        font-weight: 500;
        opacity: 0.7;
    }
    
    .visit-card .visit-card-overlay {
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
        display: none; 
    }
    
    .visit-card.mobile-expanded {
        height: auto;
        min-height: 450px;
    }
    
    .visit-card.mobile-expanded .visit-card-content::after {
        content: "📱 Toca para ocultar";
    }
    
    .visit-card.mobile-expanded .visit-card-overlay {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        background: linear-gradient(135deg, rgba(0, 120, 212, 0.95), rgba(0, 188, 242, 0.95));
        margin-top: 15px;
        border-radius: 8px;
        display: flex; 
    }
    
    .visit-card-overlay {
        padding: 25px;
    }
    
    .visit-card-overlay-content h3 {
        font-size: 1.3em;
    }
}

@media (min-width: 769px) {
    .visit-card .visit-card-overlay {
        display: flex !important; 
    }
    
    .visit-card:hover .visit-card-overlay {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }
}

@media (max-width: 480px) {
    .visit-cards-header h2 {
        font-size: 1.8em;
    }
    
    .visit-card {
        height: auto;
        min-height: 320px;
    }
    
    .visit-card .visit-card-overlay {
        display: none; 
    }
    
    .visit-card.mobile-expanded {
        min-height: 420px;
    }
    
    .visit-card.mobile-expanded .visit-card-overlay {
        display: flex; 
    }
    
    .visit-card-image {
        height: 160px;
    }
    
    .visit-card-content {
        padding: 18px;
        height: auto;
        min-height: 160px;
    }
    
    .visit-card-content h3 {
        font-size: 1.1em;
        margin-bottom: 12px;
    }
    
    .visit-card-content p {
        font-size: 0.9em;
    }
    
    .visit-card-content::after {
        font-size: 0.75em;
        bottom: 8px;
        right: 18px;
    }
    
    .visit-card-overlay {
        padding: 20px;
    }
    
    .visit-card-overlay-content h3 {
        font-size: 1.2em;
        margin-bottom: 15px;
    }
    
    .visit-card-overlay-content p {
        font-size: 0.9em;
        margin-bottom: 20px;
    }
    
    .visit-card-features span {
        font-size: 0.8em;
    }
}
/* ============ FIN  (CARDS) ============ */

/* ============ INICIO ESTILOS SECCIÓN DESCARGAR APLICACIÓN ============ */
.download-section {
    background-color: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.download-container {
    max-width: 1200px;
    margin: 0 auto;
}

.download-header {
    text-align: center;
    margin-bottom: 60px;
}

.download-header .subtitle {
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #6a6a6a;
    margin-bottom: 15px;
}

.download-header h2 {
    font-size: 2.5em;
    color: #2c2c2c;
    margin: 0;
    font-weight: 600;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.download-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e1e5e9;
    position: relative;
    overflow: hidden;
}

.download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0078d4, #00bcf2);
}

.download-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.download-icon svg {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.download-content h3 {
    font-size: 1.5em;
    color: #2c2c2c;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.download-content p {
    color: #605e5c;
    font-size: 1em;
    line-height: 1.6;
    margin: 0 0 25px 0;
}

.download-link {
    display: inline-block;
    background-color: #0078d4;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95em;
    transition: all 0.3s ease;
    border: 2px solid #0078d4;
}

.download-link:hover {
    background-color: #106ebe;
    border-color: #106ebe;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 110, 190, 0.3);
}

/* Media queries para sección de descarga */
@media (max-width: 768px) {
    .download-section {
        padding: 60px 15px;
    }
    
    .download-header h2 {
        font-size: 2em;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }
    
    .download-card {
        padding: 25px 20px;
    }
    
    .download-content h3 {
        font-size: 1.3em;
    }
    
    .download-icon {
        height: 60px;
        margin-bottom: 20px;
    }
    
    .download-icon svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .download-header h2 {
        font-size: 1.8em;
    }
    
    .download-content h3 {
        font-size: 1.2em;
    }
    
    .download-content p {
        font-size: 0.9em;
    }
    
    .download-link {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}
/* ============ FIN ============ */

/* ============ INICIO PLANES ============ */
.plans-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.plans-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="b" cx="50%" cy="50%"><stop offset="0%" stop-color="%230078d4" stop-opacity="0.02"/><stop offset="100%" stop-color="%2300bcf2" stop-opacity="0.01"/></radialGradient></defs><rect width="100%" height="100%" fill="url(%23b)"/></svg>') center/cover;
    pointer-events: none;
}

.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.plans-header {
    text-align: center;
    margin-bottom: 70px;
}

.plans-header h2 {
    font-size: 2.8em;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plans-description {
    font-size: 1.2em;
    color: #605e5c;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
    padding: 0;
    box-sizing: border-box;
}

.plan-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid #e1e5e9;
    width: 100%;
    box-sizing: border-box;
    height: fit-content;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 120, 212, 0.15);
    border-color: #0078d4;
}

.plan-header {
    padding: 30px 30px 20px 30px;
    background: linear-gradient(135deg, #fafbfc 0%, #f1f3f4 100%);
    border-bottom: 1px solid #e1e5e9;
    position: relative;
}

.plan-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.plan-header.vendedores::before {
    background: linear-gradient(90deg, #0078d4, #00bcf2);
}

.plan-header.promotores::before {
    background: linear-gradient(90deg, #00bcf2, #40e0d0);
}

.plan-header.vehicular::before {
    background: linear-gradient(90deg, #106ebe, #0078d4);
}

.plan-header h3 {
    font-size: 1.5em;
    color: #323130;
    margin: 0;
    font-weight: 700;
    text-align: center;
}

.plan-content {
    padding: 35px 30px;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 auto 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 10px 0;
    font-size: 0.95em;
    color: #323130;
    border-bottom: 1px solid #f1f3f4;
    position: relative;
    padding-left: 45px;
    line-height: 1.5;
    transition: all 0.2s ease;
}

.plan-features li:hover {
    background-color: rgba(0, 120, 212, 0.04);
    padding-left: 50px;
    color: #0078d4;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li:before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: bold;
    font-size: 0.9em;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0078d4, #106ebe);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0, 120, 212, 0.3);
}

.plan-cta {
    text-align: center;
    margin-top: 30px;
}

.plan-button {
    background: linear-gradient(135deg, #0078d4, #00bcf2);
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    max-width: 200px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
}

.plan-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.plan-button:hover {
    background: linear-gradient(135deg, #106ebe, #0078d4);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 120, 212, 0.3);
}

.plan-button:hover::before {
    left: 100%;
}

/* Media queries para planes */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .plan-card {
        border-radius: 16px;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 50px 20px;
    }
    
    .plans-container {
        padding: 0;
    }
    
    .plans-header {
        margin-bottom: 40px;
        text-align: center;
    }
    
    .plans-header h2 {
        font-size: 2.2em;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .plans-description {
        font-size: 1.1em;
        line-height: 1.6;
        padding: 0 10px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .plan-card {
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
        margin: 0 5px;
    }
    
    .plan-card:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 15px 35px rgba(0, 120, 212, 0.12);
    }
    
    .plan-header {
        padding: 25px 20px 15px 20px;
    }
    
    .plan-header h3 {
        font-size: 1.3em;
        text-align: center;
    }
    
    .plan-content {
        padding: 20px;
    }
    
    .plan-features {
        margin-bottom: 20px;
    }
    
    .plan-features li {
        font-size: 0.9em;
        padding: 8px 0;
        line-height: 1.4;
        padding-left: 40px;
    }
    
    .plan-features li:hover {
        padding-left: 45px;
    }
    
    .plan-features li:before {
        left: 12px;
        width: 18px;
        height: 18px;
        font-size: 0.8em;
    }
    
    .plan-cta {
        text-align: center;
        margin-top: 25px;
    }
    
    .plan-button {
        padding: 12px 30px;
        font-size: 0.9em;
        width: auto;
        max-width: none;
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .plans-section {
        padding: 40px 15px;
    }
    
    .plans-header h2 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    
    .plans-description {
        font-size: 1em;
        padding: 0 5px;
    }
    
    .plans-grid {
        gap: 15px;
        margin-top: 25px;
    }
    
    .plan-card {
        margin: 0;
        border-radius: 10px;
    }
    
    .plan-header {
        padding: 20px 15px 12px 15px;
    }
    
    .plan-header h3 {
        font-size: 1.2em;
    }
    
    .plan-content {
        padding: 15px;
    }
    
    .plan-features li {
        font-size: 0.85em;
        padding: 6px 0;
        padding-left: 38px;
    }
    
    .plan-features li:hover {
        padding-left: 42px;
    }
    
    .plan-features li:before {
        left: 10px;
        width: 16px;
        height: 16px;
        font-size: 0.75em;
    }
    
    .plan-cta {
        margin-top: 20px;
    }
    
    .plan-button {
        padding: 10px 25px;
        font-size: 0.85em;
        min-width: 120px;
    }
}

@media (max-width: 360px) {
    .plans-section {
        padding: 35px 10px;
    }
    
    .plans-header h2 {
        font-size: 1.6em;
        margin-bottom: 12px;
    }
    
    .plans-description {
        font-size: 0.95em;
    }
    
    .plan-header {
        padding: 18px 12px 10px 12px;
    }
    
    .plan-header h3 {
        font-size: 1.1em;
    }
    
    .plan-content {
        padding: 12px;
    }
    
    .plan-features li {
        font-size: 0.8em;
        padding: 5px 0;
        padding-left: 35px;
    }
    
    .plan-features li:hover {
        padding-left: 38px;
    }
    
    .plan-features li:before {
        left: 8px;
        width: 15px;
        height: 15px;
        font-size: 0.7em;
    }
    
    .plan-button {
        padding: 8px 20px;
        font-size: 0.8em;
        min-width: 100px;
    }
}
/* ============ FIN PLANES ============ */

/* ============ INICIO PREGUNTAS FRECUENTES  ============ */
.outlook-faq-section {
    background-color: #f3f2f1;
    padding: 80px 0 100px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.outlook-faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.outlook-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    padding-bottom: 25px;
}

.outlook-faq-header h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #323130;
    margin: 0;
    letter-spacing: 1.2px;
}

.outlook-faq-controls {
    display: flex;
    gap: 16px;
}

.outlook-btn-outline {
    background: transparent;
    border: 1px solid #8a8886;
    color: #323130;
    padding: 12px 24px;
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Segoe UI', sans-serif;
    letter-spacing: 0.3px;
}

.outlook-btn-outline:hover:not(:disabled) {
    background-color: #f3f2f1;
    border-color: #605e5c;
    color: #323130;
}

.outlook-btn-outline:active:not(:disabled) {
    background-color: #edebe9;
}

/* Estado activo/seleccionado */
.outlook-btn-outline.active {
    background-color: #0078d4;
    border-color: #0078d4;
    color: white;
    font-weight: 500;
}

.outlook-btn-outline.active:hover {
    background-color: #106ebe;
    border-color: #106ebe;
    color: white;
}

.outlook-btn-outline:disabled {
    background-color: #f3f2f1;
    border-color: #c8c6c4;
    color: #a19f9d;
    cursor: not-allowed;
    opacity: 0.6;
}

.outlook-btn-outline:disabled.active {
    background-color: #deecf9;
    border-color: #c7e0f4;
    color: #0078d4;
    opacity: 0.8;
}

.outlook-faq-list {
    background-color: white;
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1.6px 3.6px 0 rgba(0, 0, 0, 0.132), 0 0.3px 0.9px 0 rgba(0, 0, 0, 0.108);
}

.outlook-faq-item {
    border-bottom: 1px solid #edebe9;
}

.outlook-faq-item:last-child {
    border-bottom: none;
}

.outlook-faq-row {
    display: flex;
    align-items: center;
    padding: 28px 32px;
    cursor: pointer;
    transition: background-color 0.15s ease;
    min-height: 80px;
}

.outlook-faq-row:hover {
    background-color: #f8f8f8;
}

.outlook-faq-number {
    font-size: 1.1rem;
    color: #605e5c;
    font-weight: 500;
    width: 60px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

.outlook-faq-question {
    flex: 1;
    font-size: 1.2rem;
    color: #323130;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 25px;
    letter-spacing: 0.3px;
}

.outlook-faq-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #323130;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    font-weight: 300;
}

.outlook-faq-toggle:hover {
    background-color: #f3f2f1;
}

.outlook-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #faf9f8;
}

.outlook-faq-answer p {
    padding: 30px 32px 30px 92px;
    margin: 0;
    color: #605e5c;
    font-size: 1.05rem;
    line-height: 1.6;
    border-top: 1px solid #edebe9;
    letter-spacing: 0.2px;
}

.outlook-faq-item.expanded .outlook-faq-answer {
    max-height: 300px;
}

.outlook-faq-item.expanded .outlook-faq-toggle {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .outlook-faq-container {
        padding: 0 25px;
    }
    
    .outlook-faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .outlook-faq-header h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    .outlook-faq-controls {
        width: 100%;
        justify-content: flex-start;
    }
    
    .outlook-btn-outline {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .outlook-faq-row {
        padding: 22px 25px;
        min-height: 70px;
    }
    
    .outlook-faq-number {
        width: 50px;
        font-size: 1rem;
    }
    
    .outlook-faq-question {
        font-size: 1.1rem;
        padding: 0 18px;
        letter-spacing: 0.2px;
    }
    
    .outlook-faq-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
    
    .outlook-faq-answer p {
        padding: 25px 25px 25px 75px;
        font-size: 1rem;
        letter-spacing: 0.1px;
    }
}

@media (max-width: 480px) {
    .outlook-faq-section {
        padding: 60px 0 80px 0;
    }
    
    .outlook-faq-header h2 {
        font-size: 1.8rem;
        letter-spacing: 0.8px;
    }
    
    .outlook-faq-row {
        padding: 20px 20px;
        min-height: 65px;
    }
    
    .outlook-faq-number {
        width: 45px;
        font-size: 0.95rem;
    }
    
    .outlook-faq-question {
        font-size: 1rem;
        padding: 0 15px;
        letter-spacing: 0.1px;
    }
    
    .outlook-faq-toggle {
        width: 34px;
        height: 34px;
        font-size: 1.3rem;
    }
    
    .outlook-faq-answer p {
        padding: 22px 20px 22px 65px;
        font-size: 0.95rem;
        letter-spacing: 0.1px;
    }
}
/* ============ FIN PREGUNTAS FRECUENTES  ============ */

/* ============ INICIO ESTILOS BARRA DE CLIENTES CON ANIMACIÓN ============ */
.clients-bar-section {
    padding: 60px 0 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-top: 1px solid #e1e5e9;
    overflow: hidden;
}

.clients-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.clients-title {
    font-size: 2rem;
    font-weight: 600;
    color: #323130;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.clients-bar-wrapper {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.clients-bar {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: slideRight 30s linear infinite;
    width: fit-content;
    max-width: none;
}

@keyframes slideRight {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 40px));
    }
}

/* Animación continua sin pausar */

.client-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}

.client-logo-bar {
    max-width: 160px;
    max-height: 80px;
    object-fit: contain;
    filter: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.client-logo-item:hover .client-logo-bar {
    opacity: 1;
    transform: scale(1.05);
}

/* Duplicar los logos para el efecto infinito */
.clients-bar::after {
    content: '';
    display: flex;
    align-items: center;
    gap: 60px;
}

@media (max-width: 768px) {
    .clients-title {
        font-size: 1.7rem;
    }
    
    .clients-bar {
        gap: 60px;
    }
    
    .client-logo-item {
        min-width: 150px;
    }
    
    .client-logo-bar {
        max-width: 130px;
        max-height: 65px;
    }
}

@media (max-width: 480px) {
    .clients-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .clients-bar {
        gap: 50px;
        animation-duration: 18s;
    }
    
    .client-logo-bar {
        max-width: 110px;
        max-height: 55px;
    }
}
/* ============ FIN ESTILOS BARRA DE CLIENTES CON ANIMACIÓN ============ */

/* ============ INICIO ESTILOS MODAL DE VIDEO ============ */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal-content {
    position: relative;
    margin: 5% auto;
    width: 90%;
    max-width: 900px;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: #00bcf2;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; 
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .video-modal-content {
        margin: 10% auto;
        width: 95%;
    }
    
    .video-close {
        font-size: 30px;
        top: -35px;
    }
}

@media (max-width: 480px) {
    .video-modal-content {
        margin: 15% auto;
    }
    
    .video-close {
        font-size: 25px;
        top: -30px;
    }
}
/* ============ FIN ESTILOS MODAL DE VIDEO ============ */

/* ============ INICIO ESTILOS FOOTER   ============ */
.microsoft-footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #000000 0%, #c7c0c0 50%, #8d8d8d 100%);
    color: #323130;
    margin-top: 0;
}

.footer-main {
    padding: 60px 0 40px 0;
    background: linear-gradient(135deg, #1e1e1e 0%, #2d2d2d 100%);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.footer-brand {
    max-width: 500px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo-img {
    width: 65px;
    height: 65px;
    filter: none;
}

.footer-logo-img-large {
    width: 300px;
    height: auto;
    max-height: 120px;
    filter: none;
    object-fit: contain;
}

.footer-brand-name {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #fff4e9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #b8b8b8;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-links-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.footer-column h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.2px;
}

.footer-column a:hover {
    color: #00bcf2;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-column a i {
    margin-right: 8px;
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
    color: #00bcf2;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f3f2f1;
    padding: 30px 0;
    border-top: 1px solid #edebe9;
    color: #323130;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-legal-centered {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}

.footer-social {
    display: flex;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #8a8886;
    text-decoration: none;
    transition: all 0.2s ease;
    border-radius: 4px;
    background-color: transparent;
}

.social-link:hover {
    color: #0078d4;
    background-color: rgba(0, 120, 212, 0.1);
    transform: translateY(-1px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link i {
    font-size: 18px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    align-items: center;
}

.legal-links a {
    color: #605e5c;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
    font-weight: 400;
}

.legal-links a:hover {
    color: #0078d4;
    text-decoration: underline;
}

.copyright {
    color: #8a8886;
    font-size: 0.875rem;
    font-weight: 400;
    padding-left: 15px;
    border-left: 1px solid #edebe9;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 25px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    

    
    .footer-bottom-content {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }
    
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    
    .copyright {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #edebe9;
        padding-top: 15px;
    }
    
    .footer-social {
        order: -1;
    }
    
    .social-links {
        gap: 20px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
    }
    
    .social-link i {
        font-size: 20px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 40px 0 30px 0;
    }
    
    .footer-brand-name {
        font-size: 1.5rem;
    }
    
    .footer-logo-img {
        width: 40px;
        height: 40px;
    }
    

}
/* ============ FIN ESTILOS FOOTER ESTILO MICROSOFT ============ */

/* ============ INICIO ESTILOS BOTÓN WHATSAPP FLOTANTE ============ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button i {
    margin: 0;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Responsivo para móviles */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}
/* ============ FIN ESTILOS BOTÓN WHATSAPP FLOTANTE ============ */
