/* ========================================
   Variables y Reset
======================================== */
:root {
    --azul-oscuro: #1F3A5A;
    --naranja: #F28C28;
    --blanco: #FFFFFF;
    --gris-claro: #F5F5F5;
    --gris-medio: #E0E0E0;
    --texto-oscuro: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--texto-oscuro);
    position: relative;
    overflow-x: hidden;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(242, 140, 40, 0.02) 50px,
            rgba(242, 140, 40, 0.02) 51px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 50px,
            rgba(242, 140, 40, 0.02) 50px,
            rgba(242, 140, 40, 0.02) 51px
        );
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(242, 140, 40, 0.03) 0%, transparent 50%),
        linear-gradient(-135deg, transparent 50%, rgba(242, 140, 40, 0.03) 100%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 50px) scale(1.1);
    }
}

/* ========================================
   Preloader
======================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blanco);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    width: 200px;
    height: auto;
    animation: fadeInScale 1s ease-in-out infinite alternate;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gris-claro);
    border-top: 4px solid var(--naranja);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes fadeInScale {
    0% {
        opacity: 0.6;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   Utilidades
======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Navegación
======================================== */
nav {
    background-color: #FFFFFF;
    background: #FFFFFF;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
}

.nav-cta-button {
    background: linear-gradient(135deg, var(--naranja) 0%, #e07520 100%);
    color: var(--blanco);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.nav-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
}

.nav-cta-button-mobile {
    display: none;
    background: linear-gradient(135deg, var(--naranja) 0%, #e07520 100%);
    color: var(--blanco);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(242, 140, 40, 0.3);
    white-space: nowrap;
}

.nav-cta-button-mobile:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.4);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    background-color: var(--azul-oscuro);
    display: flex;
    flex-direction: column;
    list-style: none;
    gap: 0;
    padding: 120px 2rem 2rem 2rem;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 0.5rem;
}

.nav-menu li a {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.nav-menu li a:hover {
    background-color: rgba(242, 140, 40, 0.2);
    color: var(--naranja);
    transform: translateX(10px);
}

.nav-menu li a::after {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: 2px solid var(--azul-oscuro);
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background-color: var(--azul-oscuro);
}

.menu-toggle:hover span:not(.menu-text) {
    background-color: var(--blanco);
}

.menu-toggle:hover .menu-text {
    color: var(--blanco);
}

.menu-toggle span:not(.menu-text) {
    width: 20px;
    height: 2px;
    background-color: var(--azul-oscuro);
    transition: 0.3s;
    display: block;
}

.menu-text {
    font-weight: 600;
    color: var(--azul-oscuro);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu-toggle.active {
    background-color: var(--azul-oscuro);
}

.menu-toggle.active span:not(.menu-text) {
    background-color: var(--blanco);
}

.menu-toggle.active .menu-text {
    color: var(--blanco);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Overlay para cerrar menú */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Hero Section
======================================== */
header {
    padding-top: 60px;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../imagenes/cosntruccion-civil.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--texto-oscuro);
    padding: 40px 20px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--blanco);
    line-height: 1.1;
}

.hero-co {
    color: var(--naranja) !important;
    font-weight: 800;
}

.hero h2 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: var(--blanco);
    line-height: 1.4;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    color: var(--texto-oscuro);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    z-index: 1;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.hero-video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 260px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    cursor: pointer;
    transition: opacity 0.4s ease;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.video-play-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-overlay:hover .video-play-icon {
    transform: scale(1.1);
    background: rgba(242, 140, 40, 0.6);
}

.video-overlay-text {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-align: center;
    margin: 0;
}

.hero-video {
    width: 100%;
    max-width: 260px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: var(--naranja);
    color: var(--blanco);
    padding: 15px 40px;
    margin: 0;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
    cursor: pointer;
}

.cta-button-primary {
    background-color: var(--naranja);
    margin: 0;
}

.cta-button-primary:hover {
    background-color: #d47a20;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
}

.cta-button-secondary {
    background-color: var(--azul-oscuro);
    box-shadow: 0 4px 15px rgba(31, 58, 90, 0.3);
    margin: 0;
}

.cta-button-secondary:hover {
    background-color: #2c5282;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(31, 58, 90, 0.4);
}

.cta-button-large {
    padding: 18px 50px;
    font-size: 1.3rem;
}

/* ========================================
   Sección La Propuesta
======================================== */
.section-propuesta {
    padding: 100px 20px;
    background-color: var(--blanco);
    position: relative;
    overflow: hidden;
}

.section-propuesta::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-propuesta::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, rgba(242, 140, 40, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.propuesta-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.propuesta-content {
    padding-right: 2rem;
}

.propuesta-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--naranja);
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.propuesta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.propuesta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.propuesta-list li {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: var(--texto-oscuro);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.propuesta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--naranja);
    color: var(--blanco);
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.propuesta-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    align-items: start;
}

.propuesta-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.propuesta-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.propuesta-images img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Sección Cómo Funciona
======================================== */
.section-como-funciona {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.section-como-funciona::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatCircle 8s ease-in-out infinite;
}

.section-como-funciona::after {
    content: '';
    position: absolute;
    bottom: 15%;
    right: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(31, 58, 90, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatCircle 10s ease-in-out infinite reverse;
}

.como-funciona-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

.como-funciona-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInDown 0.8s ease 0.2s backwards;
}

.funciona-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.funciona-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 1.5rem;
    animation: slideInFromLeft 0.8s ease forwards;
    opacity: 0;
}

.funciona-step:nth-child(1) {
    animation-delay: 0.3s;
}

.funciona-step:nth-child(3) {
    animation-delay: 0.6s;
}

.funciona-step:nth-child(5) {
    animation-delay: 0.9s;
}

.funciona-step:nth-child(7) {
    animation-delay: 1.2s;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--naranja) 0%, #e07520 100%);
    color: var(--blanco);
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    animation: pulse 2s ease-in-out infinite;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--naranja) 0%, #e07520 100%);
    z-index: -1;
    animation: ripple 2s ease-out infinite;
    opacity: 0;
}

.funciona-step:hover .step-number {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 8px 25px rgba(242, 140, 40, 0.5);
}

.step-content {
    background: var(--blanco);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--naranja);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(242, 140, 40, 0.1), transparent);
    transition: left 0.6s ease;
}

.funciona-step:hover .step-content::before {
    left: 100%;
}

.funciona-step:hover .step-content {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left-width: 6px;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.funciona-step:hover .step-content h3 {
    color: var(--naranja);
}

.step-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    transition: transform 0.3s ease;
}

.funciona-step:hover .step-content p {
    transform: translateX(5px);
}

.step-content p strong {
    color: var(--naranja);
    font-weight: 700;
    display: inline-block;
    animation: highlight 1.5s ease infinite;
}

.funciona-connector {
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--naranja) 0%, rgba(242, 140, 40, 0.3) 100%);
    margin: 0 auto 1.5rem auto;
    margin-left: 28px;
    border-radius: 2px;
    position: relative;
    animation: growLine 0.6s ease forwards;
}

.funciona-connector:nth-of-type(2) {
    animation-delay: 0.5s;
}

.funciona-connector:nth-of-type(4) {
    animation-delay: 0.8s;
}

.funciona-connector:nth-of-type(6) {
    animation-delay: 1.1s;
}

.funciona-connector::after {
    content: '↓';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--naranja);
    font-size: 1.2rem;
    font-weight: bold;
    animation: bounce 1.5s ease infinite;
    opacity: 0;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(242, 140, 40, 0.6);
    }
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes growLine {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 40px;
        opacity: 1;
    }
}

@keyframes floatCircle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes highlight {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* ========================================
   Sección Por Qué GestraCOO
======================================== */
.section-porque {
    padding: 100px 20px;
    background-color: var(--blanco);
    position: relative;
    overflow: hidden;
}

.section-porque::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-porque::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 200px;
    height: 2px;
    background: linear-gradient(-90deg, rgba(242, 140, 40, 0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.porque-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    text-align: left;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.porque-content {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 3rem;
    align-items: center;
}

.porque-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.porque-column {
    padding: 1rem;
}

.porque-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.porque-list li {
    display: flex;
    align-items: center;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-weight: 500;
}

.porque-problemas .porque-list li {
    color: #c74440;
}

.porque-soluciones .porque-list li {
    color: #2d8659;
}

.porque-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    margin-right: 0.8rem;
    flex-shrink: 0;
}

.porque-problemas .porque-icon {
    background-color: #c74440;
    color: var(--blanco);
}

.porque-soluciones .porque-icon {
    background-color: #2d8659;
    color: var(--blanco);
}

.porque-images {
    display: flex;
    justify-content: center;
    align-items: center;
}

.porque-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
}

.porque-img-wrapper:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.porque-images img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   Sección Beneficios Clave
======================================== */
.section-beneficios {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-beneficios::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.beneficios-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.beneficio-card {
    background: var(--blanco);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--naranja);
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 140, 40, 0.15);
}

.beneficio-titulo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 1rem;
}

.beneficio-descripcion {
    font-size: 1rem;
    color: var(--gris-oscuro);
    line-height: 1.6;
}

/* ========================================
   Sección Testimonios de Clientes
======================================== */
.section-clientes {
    padding: 100px 20px;
    background-color: var(--gris-claro);
    position: relative;
    overflow: hidden;
}

.section-clientes::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.clientes-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 1px;
}

.testimonios-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
}

.testimonios-slider {
    display: flex;
    gap: 1.25rem;
    animation: scroll-testimonios 40s linear infinite;
    width: fit-content;
}

.testimonios-slider:hover {
    animation-play-state: paused;
}

@keyframes scroll-testimonios {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonio-card {
    background: var(--blanco);
    padding: 1rem 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    border-left: 3px solid var(--naranja);
    min-width: 300px;
    max-width: 300px;
    flex-shrink: 0;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.testimonio-stars {
    color: var(--naranja);
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.testimonio-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--texto-oscuro);
    font-style: italic;
    flex-grow: 1;
}

.testimonio-autor {
    border-top: 1px solid var(--gris-medio);
    padding-top: 0.5rem;
}

.autor-nombre {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--azul-oscuro);
    margin-bottom: 0.15rem;
}

.autor-cargo {
    font-size: 0.7rem;
    color: #666;
    font-style: normal;
}

/* ========================================
   Sección Planes
======================================== */
.section-planes {
    padding: 40px 20px;
    background-color: var(--blanco);
    position: relative;
    overflow: hidden;
}

.section-planes::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.planes-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.planes-subtitle {
    text-align: center;
    font-size: 0.85rem;
    color: var(--naranja);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.plan-card {
    background: var(--blanco);
    border-radius: 12px;
    padding: 20px 15px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid var(--gris-medio);
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--naranja);
}

.plan-destacado {
    border-color: var(--naranja);
    box-shadow: 0 5px 20px rgba(242, 140, 40, 0.2);
    transform: scale(1.02);
}

.plan-destacado:hover {
    transform: scale(1.04) translateY(-8px);
}

.plan-ribbon {
    position: absolute;
    top: 12px;
    right: -8px;
    background: var(--naranja);
    color: var(--blanco);
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px 0 0 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.plan-ribbon::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -6px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid #d67520;
    border-bottom: 6px solid transparent;
}

.plan-header {
    text-align: center;
    margin-bottom: 12px;
}

.plan-nombre {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    margin-bottom: 8px;
}

.plan-precio {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.precio-simbolo {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--naranja);
    align-self: flex-end;
    margin-bottom: 6px;
}

.precio-cantidad {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--naranja);
    line-height: 1;
}

.precio-periodo {
    font-size: 0.7rem;
    color: #666;
    width: 100%;
    text-align: center;
    margin-top: 3px;
}

.precio-texto {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--azul-oscuro);
}

.plan-badge {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: var(--blanco);
    text-align: center;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.plan-features {
    list-style: none;
    margin-bottom: 15px;
    flex-grow: 1;
}

.plan-features li {
    padding: 6px 0;
    font-size: 0.8rem;
    color: var(--texto-oscuro);
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--gris-medio);
}

.plan-features li:last-child {
    border-bottom: none;
}

.feature-icon {
    color: var(--naranja);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--azul-oscuro);
    background: var(--blanco);
    border: 2px solid var(--azul-oscuro);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-btn:hover {
    background: var(--azul-oscuro);
    color: var(--blanco);
    transform: scale(1.03);
}

.plan-btn-destacado {
    background: var(--naranja);
    color: var(--blanco);
    border-color: var(--naranja);
}

.plan-btn-destacado:hover {
    background: #d67520;
    border-color: #d67520;
}

/* ========================================
   Sección Confianza
======================================== */
.section-confianza {
    padding: 50px 20px;
    background-color: var(--gris-claro);
    position: relative;
    overflow: hidden;
}

.section-confianza::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-confianza::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, rgba(242, 140, 40, 0.4) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.confianza-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.confianza-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.confianza-item {
    text-align: center;
    padding: 2rem 1rem;
    transition: transform 0.3s ease;
}

.confianza-item:hover {
    transform: translateY(-5px);
}

.confianza-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--texto-oscuro);
    font-weight: 500;
    margin: 0;
}

/* ========================================
   Sección Proyectos
======================================== */
.section-proyectos {
    padding: 100px 20px;
    background-color: var(--blanco);
}

.proyectos-container {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.proyectos-images {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
    margin-left: 2cm;
}

.proyecto-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 400px;
}

.proyecto-img-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.proyecto-img-small {
    flex: 0 0 35%;
}

.proyecto-img-large {
    flex: 0 0 65%;
}

.proyecto-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.proyectos-content {
    padding: 2rem;
}

.proyectos-content .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2.8rem;
}

.proyectos-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--texto-oscuro);
    margin-bottom: 1.5rem;
}

/* ========================================
   Secciones
======================================== */
section {
    padding: 80px 20px;
}

.section-light {
    background-color: var(--blanco);
}

.section-dark {
    background-color: var(--blanco);
}

#que-hace {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, #2c5282 100%);
}

#que-hace .section-title {
    color: var(--blanco);
}

#que-hace .section-description {
    color: var(--blanco);
}

.section-cta {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, #2c5282 100%);
    color: var(--blanco);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(242, 140, 40, 0.6) 50%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(242, 140, 40, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--azul-oscuro);
    text-align: center;
    font-weight: 700;
}

.section-cta .section-title,
.section-dark .section-title {
    color: var(--azul-oscuro);
}

.section-cta .section-title {
    color: var(--blanco);
}

.section-description {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--texto-oscuro);
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gris-claro);
}

/* ========================================
   Funcionalidades
======================================== */
.features-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 3rem;
}

.features-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
    width: 100%;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.features-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.feature-card {
    background-color: var(--blanco);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--naranja);
    flex: 0 0 100%;
    scroll-snap-align: start;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-content {
    flex: 1;
}

.feature-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--azul-oscuro);
    font-weight: 600;
}

.feature-card ul {
    list-style: none;
    padding: 0;
}

.feature-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--texto-oscuro);
}

.feature-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--naranja);
    font-weight: bold;
}

.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--naranja);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 24px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.scroll-btn:hover {
    background: var(--azul-oscuro);
}

.scroll-left {
    left: -25px;
}

.scroll-right {
    right: -25px;
}

.notification-highlight {
    background-color: var(--blanco);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 3rem auto;
    border-top: 4px solid var(--naranja);
}

.notification-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.notification-highlight h2 {
    font-size: 2rem;
    color: var(--azul-oscuro);
    margin-bottom: 1rem;
}

.notification-highlight p {
    font-size: 1.2rem;
    color: var(--texto-oscuro);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.notification-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.notification-features span {
    background: var(--gris-claro);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: var(--azul-oscuro);
}

.notification-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 0 0 2rem 0;
    font-size: 2rem;
}

.constructor {
    font-size: 3rem;
}

.arrow {
    font-size: 2.5rem;
    color: var(--naranja);
}

.phone {
    position: relative;
    font-size: 3rem;
}

.notif-bubble {
    position: absolute;
    top: -10px;
    right: -20px;
    background: var(--naranja);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.notif-bubble::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--naranja);
}

/* ========================================
   Beneficios
======================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--blanco);
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

.check-icon {
    font-size: 2rem;
    color: var(--naranja);
}

.benefit-item span:last-child {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--azul-oscuro);
}

/* ========================================
   Para quién
======================================== */
.target-audience {
    text-align: center;
    font-size: 1.4rem;
    color: var(--azul-oscuro);
    font-weight: 500;
    line-height: 2;
}

/* ========================================
   Footer
======================================== */
footer {
    background-color: var(--azul-oscuro);
    color: var(--blanco);
    text-align: center;
    padding: 2rem;
}

/* ========================================
   Animaciones
======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animación Fade In Up */
.animate-fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animación Slide In Left */
.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.animate-slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animación Slide In Right */
.animate-slide-in-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.animate-slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Animación Slide In Up */
.animate-slide-in-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-slide-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animación Bounce In */
.animate-bounce-in {
    opacity: 0;
    transform: scale(0.3);
    transition: opacity 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55), 
                transform 0.7s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.animate-bounce-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Animación Zoom In */
.animate-zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Animación Rotate In */
.animate-rotate-in {
    opacity: 0;
    transform: rotate(-15deg) scale(0.8);
    transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}

.animate-rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Animación Flip In */
.animate-flip-in {
    opacity: 0;
    transform: perspective(1000px) rotateY(-90deg);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-flip-in.visible {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg);
}

/* Animación Scale Up */
.animate-scale-up {
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.animate-scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Animación Swing In */
.animate-swing-in {
    opacity: 0;
    transform: perspective(1000px) rotateX(-90deg);
    transform-origin: top;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-swing-in.visible {
    opacity: 1;
    transform: perspective(1000px) rotateX(0deg);
}

/* ========================================
   Responsive
======================================== */

/* Tablets y pantallas medianas */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero h2 {
        font-size: 1.4rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        height: auto;
    }

    .hero-video {
        max-width: 100%;
        border-radius: 12px;
    }

    .propuesta-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .propuesta-content {
        text-align: center;
        padding-right: 0;
    }

    .propuesta-title {
        font-size: 2.2rem;
    }

    .propuesta-list li {
        justify-content: center;
    }

    .propuesta-images {
        order: -1;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }

    .porque-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .porque-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .porque-title {
        font-size: 2.2rem;
    }

    .testimonios-wrapper {
        overflow: hidden;
    }

    .testimonios-slider {
        animation: scroll-testimonios 38s linear infinite;
    }

    .testimonio-card {
        min-width: 320px;
        max-width: 320px;
    }

    .clientes-title {
        font-size: 2.2rem;
    }

    .confianza-items {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .confianza-title {
        font-size: 2.2rem;
    }

    .proyectos-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .proyectos-content {
        text-align: center;
        padding: 1rem;
    }

    .proyectos-content .section-title {
        text-align: center;
        font-size: 2.2rem;
    }
}

/* Móviles */
@media (max-width: 768px) {
    .nav-right {
        gap: 0.5rem;
    }

    .nav-cta-button {
        display: none;
    }

    .nav-cta-button-mobile {
        display: block;
    }

    .menu-text {
        display: block;
    }

    .menu-toggle {
        border: 2px solid var(--azul-oscuro);
        padding: 0.5rem 0.8rem;
        border-radius: 6px;
        font-size: 0.85rem;
    }

    .menu-toggle span:not(.menu-text) {
        display: none;
    }

    .menu-toggle:hover {
        background-color: var(--azul-oscuro);
    }

    .menu-toggle:hover .menu-text {
        color: var(--blanco);
    }

    .menu-toggle.active {
        background-color: var(--azul-oscuro);
    }

    .menu-toggle.active .menu-text {
        color: var(--blanco);
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        right: auto;
        height: auto;
        background-color: var(--azul-oscuro);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        display: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        text-align: center;
        padding: 0;
        margin-bottom: 0;
    }

    .nav-menu li a {
        color: white;
        font-size: 1rem;
        padding: 1rem;
        border-radius: 0;
    }

    .nav-menu li a:hover {
        color: var(--naranja);
        background-color: rgba(242, 140, 40, 0.1);
        transform: none;
    }

    .nav-overlay {
        display: none;
    }

    .hero {
        text-align: center;
        padding: 40px 20px 30px 20px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero h2 {
        font-size: 1.05rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-buttons .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
        border-radius: 30px;
    }

    .hero-image {
        order: 1;
        height: auto;
    }

    .hero-video {
        max-width: 60%;
        border-radius: 10px;
    }

    .video-overlay {
        width: 60%;
        border-radius: 10px;
    }

    .video-play-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .video-overlay-text {
        font-size: 0.75rem;
    }

    .propuesta-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-propuesta {
        padding: 60px 20px;
    }

    .propuesta-title {
        font-size: 1.8rem;
    }

    .propuesta-list li {
        font-size: 1.05rem;
        margin-bottom: 1.2rem;
    }

    .propuesta-icon {
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }

    .section-como-funciona {
        padding: 60px 20px;
    }

    .section-como-funciona::after {
        display: none;
    }

    .como-funciona-title {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .como-funciona-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2.5rem;
    }

    .funciona-step {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: center;
        text-align: center;
        animation: fadeInUp 0.8s ease forwards;
    }

    .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .step-content {
        padding: 1rem 1.2rem;
        border-left: none;
        border-top: 4px solid var(--naranja);
    }

    .funciona-step:hover .step-content {
        transform: translateY(-10px) scale(1.02);
    }

    .funciona-step:hover .step-content p {
        transform: translateX(0);
    }

    .step-content h3 {
        font-size: 0.95rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .funciona-connector {
        margin-left: 0;
        width: 4px;
    }

    .funciona-connector::after {
        bottom: -20px;
        font-size: 1rem;
    }

    .porque-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .porque-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-porque {
        padding: 60px 20px;
    }

    .porque-title {
        font-size: 1.5rem;
    }

    .porque-list li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .porque-icon {
        width: 24px;
        height: 24px;
        font-size: 0.85rem;
    }

    .section-beneficios {
        padding: 40px 15px;
    }

    .beneficios-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .beneficio-card {
        padding: 1rem 1.2rem;
        border-radius: 8px;
    }

    .beneficio-titulo {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
    }

    .beneficio-descripcion {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .testimonios-wrapper {
        overflow: hidden;
    }

    .testimonios-slider {
        animation: scroll-testimonios 35s linear infinite;
    }

    .testimonio-card {
        min-width: 280px;
        max-width: 280px;
        padding: 1.2rem 1rem;
    }

    .section-clientes {
        padding: 60px 20px;
    }

    .clientes-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .testimonio-text {
        font-size: 0.85rem;
    }

    .autor-nombre {
        font-size: 0.9rem;
    }

    .autor-cargo {
        font-size: 0.9rem;
    }

    .section-planes {
        padding: 40px 15px;
    }

    .planes-title {
        font-size: 1.5rem;
        margin-bottom: 6px;
    }

    .planes-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .planes-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .plan-card {
        padding: 18px 15px;
    }

    .plan-destacado {
        transform: scale(1);
    }

    .plan-destacado:hover {
        transform: translateY(-8px);
    }

    .plan-nombre {
        font-size: 1.1rem;
    }

    .precio-cantidad {
        font-size: 2rem;
    }

    .plan-features li {
        font-size: 0.75rem;
        padding: 5px 0;
    }

    .plan-btn {
        font-size: 0.8rem;
        padding: 9px 18px;
    }

    .confianza-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-confianza {
        padding: 60px 20px;
    }

    .confianza-title {
        font-size: 1.8rem;
        margin-bottom: 2.5rem;
    }

    .confianza-item p {
        font-size: 1.05rem;
    }

    .proyectos-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-proyectos {
        padding: 60px 20px;
    }

    .proyectos-images {
        gap: 1.5rem;
        order: -1;
    }

    .proyectos-content {
        padding: 0;
    }

    .proyectos-content .section-title {
        font-size: 1.8rem;
    }

    .proyectos-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 0;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        flex: 0 0 100%;
        scroll-snap-align: start;
        padding: 2rem;
        flex-direction: column;
        align-items: stretch;
    }

    .feature-image {
        max-width: 100%;
        order: 2;
    }

    .feature-content {
        order: 1;
    }

    .notification-highlight {
        padding: 2rem 1rem;
        margin: 2rem auto;
    }

    .notification-icon {
        font-size: 3rem;
    }

    .notification-highlight h2 {
        font-size: 1.5rem;
    }

    .notification-features {
        gap: 1rem;
    }

    .notification-features span {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }

    .notification-demo {
        gap: 0.5rem;
        font-size: 1.5rem;
        margin: 0 0 1.5rem 0;
    }

    .constructor, .phone {
        font-size: 2rem;
    }

    .arrow {
        font-size: 1.8rem;
    }

    .notif-bubble {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
        top: -8px;
        right: -15px;
    }

    .scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .scroll-left {
        left: -20px;
    }

    .scroll-right {
        right: -20px;
    }

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

    .target-audience {
        font-size: 1.2rem;
    }
}

/* ========================================
   Modal del Formulario Beta
======================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    animation: fadeIn 0.3s ease;
    -webkit-overflow-scrolling: touch; /* Smooth scrolling en iOS */
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: var(--blanco);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    padding: 2.5rem;
    position: relative;
    animation: slideDown 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: var(--texto-oscuro);
    cursor: pointer;
    transition: color 0.3s ease, transform 0.3s ease;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--naranja);
    transform: rotate(90deg);
}

.modal-content h2 {
    color: var(--azul-oscuro);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.modal-description {
    color: var(--texto-oscuro);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--azul-oscuro);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gris-medio);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gris-medio);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
    background-color: var(--blanco);
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: var(--naranja);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.phone-input-group {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.country-code {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    background-color: var(--gris-claro);
    border: 2px solid var(--gris-medio);
    border-radius: 8px;
    font-weight: 600;
    color: var(--azul-oscuro);
    min-width: 60px;
    font-size: 1rem;
}

.phone-input-group input {
    flex: 1;
}

.form-group input:focus {
    outline: none;
    border-color: var(--naranja);
    box-shadow: 0 0 0 3px rgba(242, 140, 40, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--naranja), #d97a20);
    color: var(--blanco);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 140, 40, 0.3);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 140, 40, 0.4);
}

.form-submit-btn:active {
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Modal de Éxito
======================================== */
.success-content {
    text-align: center;
    max-width: 450px;
    padding: 3rem 2.5rem;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-content h2 {
    color: var(--azul-oscuro);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message {
    color: var(--texto-oscuro);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

#success-close-btn {
    margin: 0 auto;
    display: inline-block;
    min-width: 200px;
}

@keyframes successPop {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive para el modal */
@media (max-width: 768px) {
    .modal {
        padding: 10px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .modal-content {
        padding: 1.5rem 1rem;
        max-width: 95%;
        width: 95%;
        margin: 0 auto;
        max-height: 90vh;
        overflow-y: auto;
    }

    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 1.8rem;
    }

    .modal-content h2 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .modal-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .form-group input,
    .form-group select {
        font-size: 16px; /* Evita zoom en iOS */
        padding: 0.65rem 0.8rem;
    }

    .phone-input-group {
        gap: 0.3rem;
    }

    .country-code {
        padding: 0.65rem 0.6rem;
        min-width: 55px;
        font-size: 0.9rem;
    }

    .form-submit-btn {
        font-size: 1rem;
        padding: 0.9rem;
    }

    /* Modal de éxito responsive */
    .success-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
        width: 95%;
    }

    .success-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .success-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .success-message {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    #success-close-btn {
        min-width: 100%;
        font-size: 1rem;
    }
}

/* Media query para dispositivos muy pequeños */
@media (max-width: 480px) {
    .modal {
        padding: 5px;
    }

    .modal-content {
        padding: 1.2rem 0.8rem;
        border-radius: 8px;
        max-width: 98%;
        width: 98%;
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }

    .modal-description {
        font-size: 0.85rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .form-group input,
    .form-group select {
        font-size: 16px;
        padding: 0.6rem 0.7rem;
    }

    .success-content {
        padding: 1.5rem 1rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .success-content h2 {
        font-size: 1.3rem;
    }

    .success-message {
        font-size: 0.95rem;
    }
}

/* ========================================
   Sección de Redes Sociales
======================================== */
.social-media {
    background: linear-gradient(135deg, var(--azul-oscuro) 0%, #2d4a6f 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--blanco);
    position: relative;
    overflow: hidden;
}

.social-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(242, 140, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(242, 140, 40, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.social-media .container {
    position: relative;
    z-index: 1;
}

.social-media h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: var(--blanco);
}

.social-media p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    color: var(--blanco);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 35px;
    border-radius: 50px;
    color: var(--blanco);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--naranja);
    border-color: var(--naranja);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(242, 140, 40, 0.4);
}

.social-links a svg {
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.social-links a:hover svg {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-media {
        padding: 60px 20px;
    }

    .social-media h2 {
        font-size: 2rem;
    }
    
    .social-media p {
        font-size: 1rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .social-links a {
        width: 80%;
        max-width: 300px;
        justify-content: center;
        padding: 18px 30px;
    }
}

/* ========================================
   Sección de Blog Slider
======================================== */
.section-blog {
    background: var(--gris-claro);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--azul-oscuro);
    margin-bottom: 15px;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--texto-oscuro);
    opacity: 0.8;
}

.blog-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-slider {
    overflow: hidden;
    border-radius: 12px;
}

.blog-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
}

.blog-card-slider {
    width: calc((100% - 60px) / 3);
    min-width: calc((100% - 60px) / 3);
    max-width: calc((100% - 60px) / 3);
    background: var(--blanco);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.blog-card-slider:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.blog-card-image-slider {
    position: relative;
    height: 130px;
    overflow: hidden;
}

.blog-card-image-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card-slider:hover .blog-card-image-slider img {
    transform: scale(1.1);
}

.blog-category-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: var(--naranja);
    color: var(--blanco);
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 2;
}

.blog-card-content-slider {
    padding: 12px;
}

.blog-date-slider {
    color: var(--naranja);
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 6px;
}

.blog-card-slider h3 {
    font-size: 0.95rem;
    color: var(--azul-oscuro);
    margin-bottom: 8px;
    line-height: 1.3;
    font-weight: 700;
    min-height: 35px;
}

.blog-card-slider p {
    color: var(--texto-oscuro);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 40px;
}

.blog-btn-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--azul-oscuro);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--azul-oscuro);
    padding: 5px 10px;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.blog-btn-more:hover {
    background: var(--azul-oscuro);
    color: var(--blanco);
}

.blog-btn-more svg {
    transition: transform 0.3s ease;
}

.blog-btn-more:hover svg {
    transform: translateX(5px);
}

/* Botones de navegación */
.blog-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--blanco);
    border: 2px solid var(--azul-oscuro);
    color: var(--azul-oscuro);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.blog-nav-btn:hover {
    background: var(--azul-oscuro);
    color: var(--blanco);
    transform: translateY(-50%) scale(1.1);
}

.blog-prev {
    left: 0;
}

.blog-next {
    right: 0;
}

/* Indicadores de puntos */
.blog-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.blog-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gris-medio);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-dot.active {
    background: var(--naranja);
    width: 30px;
    border-radius: 6px;
}

.blog-dot:hover {
    background: var(--azul-oscuro);
}

/* Responsive */
@media (max-width: 992px) {
    .blog-card-slider {
        width: calc((100% - 30px) / 2);
        min-width: calc((100% - 30px) / 2);
        max-width: calc((100% - 30px) / 2);
    }

    .blog-slider-container {
        padding: 0 50px;
    }
}

@media (max-width: 768px) {
    .section-blog {
        padding: 30px 10px;
    }

    .blog-title {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .blog-subtitle {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    .blog-card-slider {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        margin: 0;
    }

    .blog-slider-container {
        padding: 0 30px;
        max-width: 100%;
    }

    .blog-track {
        gap: 10px;
    }

    .blog-nav-btn {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .blog-prev {
        left: 0;
    }

    .blog-next {
        right: 0;
    }

    .blog-card-content-slider {
        padding: 8px;
    }

    .blog-category-tag {
        top: 5px;
        left: 5px;
        padding: 2px 6px;
        font-size: 0.6rem;
    }

    .blog-date-slider {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .blog-card-slider h3 {
        font-size: 0.75rem;
        min-height: auto;
        margin-bottom: 5px;
        line-height: 1.2;
    }

    .blog-card-slider p {
        font-size: 0.65rem;
        min-height: auto;
        margin-bottom: 6px;
        line-height: 1.3;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .blog-card-image-slider {
        height: 80px;
    }

    .blog-btn-more {
        padding: 3px 6px;
        font-size: 0.65rem;
        gap: 3px;
        border-width: 1px;
    }

    .blog-dots {
        margin-top: 25px;
        gap: 8px;
    }

    .blog-dot {
        width: 8px;
        height: 8px;
    }

    .blog-dot.active {
        width: 20px;
    }
}

/* ========================================
   Banner de Cookies
======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1F3A5A 0%, #2d4a6f 100%);
    color: white;
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
    display: none;
    animation: slideUp 0.5s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    line-height: 1.6;
}

.cookie-text p:first-child {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cookie-text p:last-child {
    font-size: 0.95rem;
    opacity: 0.95;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn-primary {
    background: #F28C28;
    color: white;
}

.cookie-btn-primary:hover {
    background: #e07520;
    transform: translateY(-2px);
}

.cookie-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cookie-link {
    color: #F28C28;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.cookie-link:hover {
    color: #ffa347;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}