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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

html {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

section {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Color Palette - Vibrant Startup */
:root {
    --primary: #5FB3D6;      /* Azul vibrante */
    --secondary: #FFB84D;    /* Naranja cálido */
    --accent: #5DD39E;       /* Verde esmeralda */
    --yellow: #FFD93D;       /* Amarillo vibrante */
    --purple: #B695F8;       /* Morado vibrante */
    --teal: #4ECDC4;         /* Turquesa */
    --gray: #F5F7FA;
    --dark: #2D3748;
    --success: #48BB78;
}

/* Hero Section */
.hero-partners {
    min-height: 100vh;
    background: linear-gradient(180deg, var(--primary) 0%, #7ECCE4 50%, #9DD9ED 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Compensar navbar fixed */
}

.hero-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse 800px 300px at 20% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 600px 200px at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 700px 250px at 50% 60%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Floating elements */
.floating-element {
    position: absolute;
    animation: float 6s ease-in-out infinite;
    z-index: 2;
}

.floating-element img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 4px 20px rgba(168, 213, 226, 0.4));
}

.element-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.element-1 img {
    width: 60px;
    height: 60px;
}

.element-2 {
    top: 25%;
    right: 12%;
    animation-delay: 2s;
}

.element-2 img {
    width: 90px;
    height: 90px;
}

.element-3 {
    top: 45%;
    right: 8%;
    animation-delay: 4s;
}

.element-3 img {
    width: 70px;
    height: 70px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 3;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
}

/* Prevenir overflow en todos los elementos */
* {
    box-sizing: border-box;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevenir overflow horizontal global */
h1, h2, h3, h4, h5, h6, p, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Navigation */
.nav {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    background: transparent;
}

/* Navbar Estados */
.nav-hidden {
    transform: translateY(-100%);
}

.nav-visible {
    transform: translateY(0);
}

.nav-scrolled {
    background: rgba(95, 179, 214, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-scrolled .nav-content {
    background: rgba(255, 255, 255, 0.25);
}

/* Hamburger Menu Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger {
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hamburger::after {
    bottom: -8px;
}

/* Hamburger Animation */
.nav-toggle.active .hamburger {
    background: transparent;
}

.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.active .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    box-shadow: 
        -8px -8px 16px rgba(255, 255, 255, 0.5),
        8px 8px 16px rgba(168, 213, 226, 0.3),
        inset -2px -2px 8px rgba(255, 255, 255, 0.3),
        inset 2px 2px 8px rgba(168, 213, 226, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.8;
}

.btn {
    text-decoration: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-login {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.4),
        4px 4px 10px rgba(168, 213, 226, 0.2);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-primary-nav {
    background: linear-gradient(135deg, var(--accent) 0%, #45C589 100%);
    color: white;
    box-shadow: 
        -4px -4px 10px rgba(93, 211, 158, 0.5),
        4px 4px 10px rgba(69, 197, 137, 0.6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 
        -6px -6px 14px rgba(93, 211, 158, 0.6),
        6px 6px 14px rgba(69, 197, 137, 0.7);
}

/* Hero Content */
.hero-content {
    padding: 3rem 0 6rem;
    text-align: center;
    position: relative;
    z-index: 3;
}

.partner-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.3),
        4px 4px 10px rgba(0, 0, 0, 0.15);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 4px 20px rgba(0, 0, 0, 0.2),
        0 8px 40px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--yellow) 0%, #FFCC00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-subtitle {
    font-size: 1.2rem;
    color: white;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    font-weight: 500;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #45C589 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: 
        -6px -6px 16px rgba(93, 211, 158, 0.5),
        6px 6px 16px rgba(69, 197, 137, 0.6);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        -8px -8px 20px rgba(93, 211, 158, 0.6),
        8px 8px 20px rgba(69, 197, 137, 0.7);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 
        -6px -6px 16px rgba(255, 255, 255, 0.3),
        6px 6px 16px rgba(0, 0, 0, 0.15);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.4),
        8px 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Video Preview */
.video-preview {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.video-container {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 
        -10px -10px 30px rgba(255, 255, 255, 0.3),
        10px 10px 30px rgba(168, 213, 226, 0.4);
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: #000;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

/* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    box-shadow: 
        -6px -6px 16px rgba(255, 255, 255, 0.3),
        6px 6px 16px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Section Common Styles */
section {
    padding: 8rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(168, 213, 226, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

/* Problem Section - Estilo CIVI */
.problem-section {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, #e5e7eb 0%, #f3f4f6 25%, #e5e7eb 50%, #f9fafb 75%, #f3f4f6 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 
        inset 0 10px 30px rgba(255, 255, 255, 0.8),
        inset 0 -10px 30px rgba(0, 0, 0, 0.05);
}

/* Efecto granulado */
.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(93, 211, 158, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(95, 179, 214, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 217, 61, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.problem-section .container {
    position: relative;
    z-index: 2;
}

/* Blobs de plastilina decorativos */
.clay-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.35;
    z-index: 0;
    box-shadow: 
        inset -10px -10px 30px rgba(255, 255, 255, 0.3),
        inset 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.clay-blob-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent) 0%, #45C589 40%, transparent 70%);
    top: 15%;
    left: 5%;
    animation: clayFloat1 8s ease-in-out infinite;
}

.clay-blob-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, #4099BD 40%, transparent 70%);
    bottom: 20%;
    left: 10%;
    animation: clayFloat2 10s ease-in-out infinite;
}

.clay-blob-3 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--yellow) 0%, #FFC107 40%, transparent 70%);
    top: 60%;
    right: 8%;
    animation: clayFloat3 9s ease-in-out infinite;
}

@keyframes clayFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.2); }
}

@keyframes clayFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 20px) scale(1.15); }
}

@keyframes clayFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, 25px) scale(1.3); }
}

/* Título superior */
.problem-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.5;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Contenedor principal */
.problem-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.problem-text-wrapper {
    position: relative;
    z-index: 2;
}

.problem-title {
    font-size: 8rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    letter-spacing: -0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    text-transform: lowercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.problem-image-container {
    display: inline-block;
    position: relative;
    margin: 0 -30px;
    z-index: 3;
}

.problem-character {
    width: 280px;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.2));
    animation: bobble 4s ease-in-out infinite;
}

@keyframes bobble {
    0%, 100% {
        transform: translateY(0px) rotate(-3deg) scale(1);
    }
    50% {
        transform: translateY(-20px) rotate(3deg) scale(1.02);
    }
}

/* Etiquetas flotantes */
.floating-label {
    position: absolute;
    background: white;
    padding: 0.7rem 1.4rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 
        -4px -4px 12px rgba(255, 255, 255, 0.8),
        4px 4px 12px rgba(0, 0, 0, 0.15),
        inset -2px -2px 6px rgba(255, 255, 255, 0.5),
        inset 2px 2px 6px rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    transform: rotate(var(--rotation));
    animation: floatLabel 5s ease-in-out infinite;
    animation-delay: var(--delay);
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes floatLabel {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation)) scale(1);
    }
    50% {
        transform: translateY(-12px) rotate(var(--rotation)) scale(1.05);
    }
}

.label-1 {
    top: 10%;
    left: 8%;
    --rotation: -5deg;
    --delay: 0s;
}

.label-2 {
    top: 25%;
    left: 18%;
    --rotation: 3deg;
    --delay: 0.5s;
}

.label-3 {
    top: 35%;
    left: 25%;
    --rotation: -2deg;
    --delay: 1s;
}

.label-4 {
    top: 30%;
    right: 22%;
    --rotation: 4deg;
    --delay: 1.5s;
}

.label-5 {
    top: 15%;
    right: 28%;
    --rotation: -3deg;
    --delay: 2s;
}

.label-6 {
    bottom: 25%;
    right: 15%;
    --rotation: 5deg;
    --delay: 2.5s;
}

.problem-conclusion {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 4rem;
    padding: 2rem;
    line-height: 1.8;
}

.highlight-red {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.7rem;
}

/* Solution Section - Estilo CIVI */
.solution-section {
    min-height: 100vh;
    background: 
        linear-gradient(160deg, #fafafa 0%, #f3f4f6 20%, #e5e7eb 40%, #f9fafb 60%, #ffffff 80%, #f3f4f6 100%);
    padding: 8rem 0;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 
        inset 0 10px 40px rgba(255, 255, 255, 0.9),
        inset 0 -10px 40px rgba(0, 0, 0, 0.06);
}

/* Formas orgánicas decorativas */
.organic-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(93, 211, 158, 0.2) 0%, rgba(95, 179, 214, 0.15) 50%, rgba(182, 149, 248, 0.12) 100%);
    filter: blur(70px);
    z-index: 0;
    opacity: 0.9;
    box-shadow: 
        inset -15px -15px 40px rgba(255, 255, 255, 0.4),
        inset 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.organic-shape-1 {
    width: 350px;
    height: 350px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 10%;
    left: -5%;
    animation: organicMove1 12s ease-in-out infinite;
}

.organic-shape-2 {
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 15%;
    right: 5%;
    animation: organicMove2 14s ease-in-out infinite;
}

.organic-shape-3 {
    width: 280px;
    height: 280px;
    border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
    top: 50%;
    right: -3%;
    animation: organicMove3 10s ease-in-out infinite;
}

@keyframes organicMove1 {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
        transform: translate(30px, -20px) rotate(90deg);
    }
}

@keyframes organicMove2 {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: translate(-25px, 15px) rotate(-90deg);
    }
}

@keyframes organicMove3 {
    0%, 100% {
        border-radius: 50% 50% 30% 70% / 50% 50% 70% 30%;
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        border-radius: 50% 50% 70% 30% / 50% 50% 30% 70%;
        transform: translate(20px, 25px) rotate(180deg);
    }
}

.solution-section .container {
    position: relative;
    z-index: 2;
}

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

/* Imagen */
.solution-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.solution-character {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    animation: gentleBounce 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

@keyframes gentleBounce {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(-2deg);
    }
}

/* Texto */
.solution-text {
    padding: 2rem 0;
}

.solution-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.brand-name {
    background: linear-gradient(135deg, var(--accent) 0%, #45C589 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.emoji {
    display: inline-block;
    font-size: 2.8rem;
    vertical-align: middle;
    margin: 0 0.2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.solution-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.solution-subtitle .emoji {
    font-size: 2.3rem;
}

.solution-description {
    font-size: 1.5rem;
    font-weight: 500;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-channels {
    font-size: 1.3rem;
    font-weight: 500;
    color: #6b7280;
    line-height: 1.6;
}

.channel-icon {
    display: inline-block;
    font-size: 1.5rem;
    vertical-align: middle;
    margin: 0 0.3rem;
}

.whatsapp {
    color: #25D366;
}

/* How it Works Section - Estilo CIVI */
.how-works-section {
    min-height: 100vh;
    background: 
        linear-gradient(160deg, #f3f4f6 0%, #e5e7eb 25%, #f9fafb 50%, #e5e7eb 75%, #f3f4f6 100%);
    padding: 8rem 0;
    position: relative;
    display: flex;
    align-items: center;
    border-top: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 
        inset 0 15px 50px rgba(255, 255, 255, 0.7),
        inset 0 -15px 50px rgba(0, 0, 0, 0.08);
}

.how-works-section .container {
    position: relative;
    z-index: 2;
}

/* Círculos tipo plastilina */
.plasticine-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.3;
    z-index: 0;
    box-shadow: 
        inset -10px -10px 30px rgba(255, 255, 255, 0.4),
        inset 10px 10px 30px rgba(0, 0, 0, 0.15);
}

.circle-1 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--primary) 0%, #4099BD 40%, transparent 70%);
    top: 8%;
    left: 8%;
    animation: plasticineFloat1 11s ease-in-out infinite;
}

.circle-2 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, var(--accent) 0%, #45C589 40%, transparent 70%);
    top: 12%;
    right: 12%;
    animation: plasticineFloat2 13s ease-in-out infinite;
}

.circle-3 {
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, var(--yellow) 0%, #FFC107 40%, transparent 70%);
    bottom: 10%;
    left: 15%;
    animation: plasticineFloat3 9s ease-in-out infinite;
}

@keyframes plasticineFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.2); }
    66% { transform: translate(-15px, 15px) scale(0.9); }
}

@keyframes plasticineFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-20px, 25px) scale(0.85); }
    66% { transform: translate(20px, -15px) scale(1.15); }
}

@keyframes plasticineFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 20px) scale(1.1); }
    66% { transform: translate(-20px, -25px) scale(0.95); }
}

.how-works-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

/* Texto */
.how-works-text {
    max-width: 650px;
}

.how-works-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.highlight-blue {
    color: var(--primary);
    font-weight: 700;
}

.how-works-description {
    font-size: 1.2rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.btn-action {
    background: #111827;
    color: white;
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 
        -6px -6px 16px rgba(31, 41, 55, 0.8),
        6px 6px 16px rgba(0, 0, 0, 0.6),
        inset -2px -2px 8px rgba(31, 41, 55, 0.6),
        inset 2px 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-action:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

/* Imagen */
.how-works-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.how-works-flowers {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.1));
    animation: floatFlowers 8s ease-in-out infinite;
}

@keyframes floatFlowers {
    0%, 100% {
        transform: translateY(0px);
    }
    25% {
        transform: translateY(-10px);
    }
    50% {
        transform: translateY(-5px);
    }
    75% {
        transform: translateY(-15px);
    }
}

/* Timeline Simple */
.timeline-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.08);
}

.timeline-item {
    text-align: center;
    font-size: 0.95rem;
    line-height: 1.6;
}

.timeline-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.timeline-arrow {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 700;
}

/* Business Model Section - Estilo CIVI */
.business-model-section {
    padding: 8rem 0;
    background: 
        linear-gradient(180deg, #ffffff 0%, #f9fafb 20%, #f3f4f6 40%, #e5e7eb 60%, #f9fafb 80%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.model-main-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 4rem;
    letter-spacing: -0.03em;
}

.highlight-green {
    color: var(--accent);
    font-weight: 700;
}

.model-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.model-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    min-width: 300px;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.08);
}

.model-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.model-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-items span {
    font-size: 1.1rem;
    color: #4b5563;
}

.model-items .big-text {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.model-items .small-text {
    font-size: 1rem;
    color: #6b7280;
    font-style: italic;
}

.model-vs {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.model-example-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
    background: var(--gray);
    border-radius: 24px;
    margin-bottom: 3rem;
}

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

.example-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
}

.example-item p {
    font-size: 1rem;
    color: #6b7280;
}

.example-arrow {
    font-size: 2rem;
    color: var(--primary);
}

.example-pay {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    background: white;
    padding: 1rem 2rem;
    border-radius: 12px;
}

.example-separator {
    width: 2px;
    height: 60px;
    background: #d1d5db;
}

.model-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.8;
}

.model-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.model-link:hover {
    border-bottom-color: var(--primary);
}

/* Results Section - Simplificado */
.results-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f9fafb 50%, #f3f4f6 100%);
    text-align: center;
}

.results-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4rem;
    line-height: 1.3;
}

.highlight-number {
    font-size: 4rem;
    color: #ef4444;
}

.highlight-number.green {
    color: var(--accent);
}

.results-simple {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.result-box {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    min-width: 250px;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.08);
}

.result-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.result-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 1rem;
}

.result-stat {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.result-stat.green {
    color: var(--accent);
}

.result-detail {
    font-size: 1rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

.result-arrow {
    font-size: 3rem;
    color: var(--primary);
}

.results-money {
    background: linear-gradient(135deg, var(--accent) 0%, #45C589 100%);
    padding: 3rem;
    border-radius: 24px;
    color: white;
    max-width: 600px;
    margin: 0 auto;
}

.money-label {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.money-amount {
    font-size: 3rem;
    font-weight: 800;
}

/* Partners Cards Section - Estilo CIVI Cards */
.partners-cards-section {
    padding: 8rem 0;
    background: 
        linear-gradient(180deg, #ffffff 0%, #f9fafb 20%, #f3f4f6 40%, #e5e7eb 60%, #f9fafb 80%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-cards-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4rem;
    line-height: 1.3;
}

.highlight-accent {
    color: var(--accent);
}

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

/* Partner Cards - Estilo CIVI */
.partner-card {
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 
        -10px -10px 30px rgba(255, 255, 255, 0.1),
        10px 10px 30px rgba(0, 0, 0, 0.3),
        inset -3px -3px 10px rgba(255, 255, 255, 0.1),
        inset 3px 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    min-height: 500px;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        -14px -14px 40px rgba(255, 255, 255, 0.15),
        14px 14px 40px rgba(0, 0, 0, 0.35),
        inset -3px -3px 10px rgba(255, 255, 255, 0.1),
        inset 3px 3px 10px rgba(0, 0, 0, 0.2);
}

.card-purple {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    color: white;
}

.card-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
}

.card-green {
    background: linear-gradient(135deg, var(--accent) 0%, #45C589 100%);
    color: white;
}

.card-image {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 
        -6px -6px 16px rgba(255, 255, 255, 0.08),
        6px 6px 16px rgba(0, 0, 0, 0.3),
        inset -2px -2px 8px rgba(255, 255, 255, 0.05),
        inset 2px 2px 8px rgba(0, 0, 0, 0.15);
}

.card-mockup {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.partner-card:hover .card-mockup {
    transform: scale(1.05);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    width: fit-content;
    box-shadow: 
        -3px -3px 8px rgba(255, 255, 255, 0.15),
        3px 3px 8px rgba(0, 0, 0, 0.2),
        inset -1px -1px 4px rgba(255, 255, 255, 0.1),
        inset 1px 1px 4px rgba(0, 0, 0, 0.15);
}

.card-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

.card-description {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
    margin: 0;
}

/* Case Study Section */
.case-study-section {
    background: linear-gradient(180deg, var(--gray) 0%, #FFF 100%);
}

.case-study-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
}

.case-before,
.case-after {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.08);
}

.case-before h3,
.case-after h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.case-before ul,
.case-after ul {
    list-style: none;
}

.case-before li,
.case-after li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #4b5563;
}

.case-arrow {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 700;
}

.highlight-green {
    color: var(--success);
    font-weight: 700;
}

.case-roi {
    text-align: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #FF9F43 100%);
    padding: 3rem;
    border-radius: 24px;
    color: white;
}

.case-roi h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Includes Section */
.includes-section {
    background: linear-gradient(180deg, #FFF 0%, var(--gray) 100%);
}

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

.include-box {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.08);
}

.include-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.include-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.include-box ul {
    list-style: none;
}

.include-box li {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.include-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Trust Section - Estilo CIVI */
.trust-section {
    padding: 8rem 0;
    background: 
        linear-gradient(180deg, #f9fafb 0%, #f3f4f6 20%, #e5e7eb 40%, #f9fafb 60%, #ffffff 80%, #f3f4f6 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trust-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.trust-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 4rem;
    font-weight: 500;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trust-badge {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.12),
        inset -2px -2px 8px rgba(255, 255, 255, 0.5),
        inset 2px 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-8px);
}

.badge-icon-container {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 1.2rem;
    border: 2px solid var(--accent);
    box-shadow: 
        -6px -6px 16px rgba(255, 255, 255, 0.9),
        6px 6px 16px rgba(0, 0, 0, 0.1),
        inset -3px -3px 8px rgba(255, 255, 255, 0.5),
        inset 3px 3px 8px rgba(93, 211, 158, 0.15);
}

.badge-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #ffffff;
    border-radius: 50%;
}

.badge-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.8rem;
}

.badge-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

/* Key Insight Section */
.key-insight-section {
    background: linear-gradient(180deg, #FFF 0%, var(--gray) 100%);
}

.insight-box {
    background: white;
    padding: 4rem;
    border-radius: 32px;
    box-shadow: 
        -12px -12px 30px rgba(255, 255, 255, 0.9),
        12px 12px 30px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.insight-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 2rem;
}

.insight-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.insight-scenario,
.insight-problem,
.insight-calculation,
.insight-solution {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
}

.insight-scenario {
    background: var(--gray);
    font-size: 1.3rem;
}

.insight-problem {
    background: linear-gradient(135deg, #EF5350 0%, #E53935 100%);
}

.big-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.insight-calculation {
    background: var(--gray);
    font-size: 1.2rem;
}

.lost-money {
    font-size: 2.5rem;
    color: #ef4444;
    margin: 1rem 0;
}

.insight-solution {
    background: linear-gradient(135deg, var(--accent) 0%, #45C589 100%);
}

.solution-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

/* CTA Options Section */
.cta-options-section {
    background: linear-gradient(180deg, var(--gray) 0%, #FFF 100%);
}

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

.option-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-8px);
}

.option-card.recommended {
    border: 3px solid var(--accent);
    box-shadow: 
        -12px -12px 30px rgba(93, 211, 158, 0.4),
        12px 12px 30px rgba(93, 211, 158, 0.5);
}

.option-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent) 0%, #45C589 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.option-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.option-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2rem;
}

.option-features {
    margin-bottom: 2rem;
    text-align: left;
}

.option-features p {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 0.8rem;
}

.launch-offer {
    text-align: center;
    background: linear-gradient(135deg, var(--yellow) 0%, #FFC107 100%);
    padding: 2rem;
    border-radius: 20px;
}

.launch-offer h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.offer-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.offer-expiry {
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(180deg, #FFF 0%, var(--gray) 100%);
}

.summary-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.summary-item {
    text-align: center;
    padding: 2rem;
}

.summary-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 50px;
    margin-bottom: 1rem;
}

.summary-item h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.summary-item p {
    font-size: 1rem;
    color: #6b7280;
}

.final-quote {
    background: white;
    padding: 4rem;
    border-radius: 24px;
    box-shadow: 
        -12px -12px 30px rgba(255, 255, 255, 0.9),
        12px 12px 30px rgba(0, 0, 0, 0.1);
}

.final-quote blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
}

.final-quote h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.quote-attribution {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 2rem;
    font-weight: 600;
}

/* Platform Section - Estilo CIVI */
.platform-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, #fafafa 0%, #ffffff 25%, #f3f4f6 50%, #ffffff 75%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.platform-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.platform-text {
    max-width: 550px;
}

.platform-title {
    font-size: 3rem;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.highlight-simple {
    color: var(--accent);
}

.platform-description {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.platform-highlight {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn-platform-primary {
    background: #111827;
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 
        -6px -6px 16px rgba(31, 41, 55, 0.8),
        6px 6px 16px rgba(0, 0, 0, 0.6);
    text-decoration: none;
    display: inline-block;
}

.btn-platform-primary:hover {
    background: #1f2937;
    transform: translateY(-2px);
}

.btn-platform-secondary {
    background: white;
    color: #111827;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    box-shadow: 
        -5px -5px 14px rgba(255, 255, 255, 0.9),
        5px 5px 14px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    display: inline-block;
}

.btn-platform-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.platform-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.platform-mockup {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        -10px -10px 30px rgba(255, 255, 255, 0.9),
        10px 10px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-chat {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

/* CTA Final Section */
.cta-final-section {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--gray) 0%, #FFF 100%);
}

.cta-final-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.cta-final-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.1));
}

.cta-final-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.cta-final-description {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-final-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-contact-info {
    background: rgba(95, 179, 214, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.cta-contact-info p {
    margin: 0.5rem 0;
    color: #4b5563;
}

.cta-contact-info a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.cta-contact-info a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    position: relative;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 6rem 0 3rem;
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.footer-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 
        -12px -12px 32px rgba(255, 255, 255, 0.6),
        12px 12px 32px rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray);
    border-radius: 50%;
    color: #6b7280;
    box-shadow: 
        -4px -4px 10px rgba(255, 255, 255, 0.9),
        4px 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-column-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
}

.footer-legal {
    color: #9ca3af;
    font-size: 0.85rem;
    margin: 0;
}

.footer-legal a {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Ocultar elementos decorativos que causan overflow */
    .floating-element,
    .element-1,
    .element-2,
    .element-3 {
        display: none !important;
    }

    /* Mostrar botón hamburguesa */
    .nav-toggle {
        display: flex;
    }

    /* Navbar Content */
    .nav-content {
        position: relative;
        padding: 0.6rem 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .logo {
        font-size: 1.3rem;
    }

    /* Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85vw;
        max-width: 280px;
        height: 100vh;
        background: rgba(95, 179, 214, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 1.5rem 2rem;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
    }

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

    .nav-item {
        width: 100%;
        margin-bottom: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 1rem;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
        margin-top: 1rem;
        padding: 1rem;
        box-sizing: border-box;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* Prevenir overflow de textos largos */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    p, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Asegurar que nada se salga */
    .model-box,
    .result-box,
    .partner-card,
    .trust-badge,
    .option-card {
        max-width: 100%;
        overflow: hidden;
    }

    /* Overlay cuando el menú está abierto */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
    }

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

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

    /* Grids a 1 columna */
    .stats-container,
    .solution-content,
    .how-works-content,
    .model-visual,
    .model-example-visual,
    .results-simple,
    .partners-cards-grid,
    .trust-badges,
    .platform-content,
    .cta-final-content,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* Ocultar elementos decorativos que se salen */
    .floating-element {
        display: none !important;
    }

    /* Hero */
    .hero-partners {
        min-height: auto;
        padding: 100px 0 3rem;
        overflow: hidden;
    }

    .partner-badge {
        font-size: 0.85rem;
        padding: 0.5rem 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 1rem;
        gap: 0.8rem;
    }

    .video-preview {
        margin: 2rem 1rem;
    }

    .video-container {
        border-radius: 12px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 1rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    /* Problem Section */
    .problem-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .problem-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .problem-main {
        min-height: 300px;
    }

    .problem-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .problem-character {
        width: 120px;
    }

    .floating-label {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .label-1 {
        top: 5%;
        left: 3%;
    }

    .label-2 {
        top: 18%;
        left: 5%;
    }

    .label-3 {
        top: 32%;
        left: 8%;
    }

    .label-4 {
        top: 5%;
        right: 3%;
    }

    .label-5 {
        top: 18%;
        right: 5%;
    }

    .label-6 {
        bottom: 15%;
        right: 8%;
    }

    .problem-conclusion {
        font-size: 1.1rem;
        padding: 1rem;
        line-height: 1.6;
    }

    .highlight-red {
        font-size: 1.2rem;
    }

    /* Solution Section */
    .solution-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .solution-content {
        gap: 2rem;
    }

    .solution-image {
        order: -1;
    }

    .solution-character {
        max-width: 250px;
        margin: 0 auto;
    }

    .solution-text {
        text-align: center;
        padding: 0 1rem;
    }

    .solution-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .solution-subtitle {
        font-size: 1.3rem;
    }

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

    .solution-channels {
        font-size: 0.95rem;
    }

    .emoji {
        font-size: 1.5rem;
    }

    /* How Works Section */
    .how-works-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .how-works-content {
        gap: 2rem;
    }

    .how-works-text {
        text-align: center;
        padding: 0 1rem;
        order: 2;
    }

    .how-works-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .how-works-description {
        font-size: 0.95rem;
    }

    .btn-action {
        width: 100%;
        padding: 1rem;
    }

    .how-works-image {
        order: 1;
    }

    .how-works-flowers {
        max-width: 250px;
        margin: 0 auto;
    }

    .timeline-simple {
        flex-direction: column;
        gap: 1rem;
        padding: 2rem 1rem;
    }

    .timeline-item {
        font-size: 0.9rem;
    }

    .timeline-number {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 1.2rem;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
    }

    /* Business Model */
    .business-model-section {
        padding: 3rem 0;
    }

    .business-model-section {
        padding: 3rem 0;
        overflow: hidden !important;
    }

    .business-model-section .container {
        overflow: hidden;
        width: 100%;
    }

    .model-main-title {
        font-size: 1.5rem;
        padding: 0 1rem;
        line-height: 1.4;
        margin-bottom: 2rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .model-visual {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .model-box {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 2rem 1rem;
        box-sizing: border-box;
    }

    .model-box h3 {
        font-size: 1.3rem;
        word-wrap: break-word;
    }

    .model-items {
        width: 100%;
    }

    .model-items span {
        font-size: 0.95rem;
        word-wrap: break-word;
    }

    .model-items .big-text {
        font-size: 1.3rem;
    }

    .model-vs {
        font-size: 1.5rem;
        transform: rotate(90deg);
        margin: 0.5rem 0;
    }

    .model-example-visual {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }

    .example-item {
        flex-direction: column;
        text-align: center;
        gap: 0.3rem;
        width: 100%;
    }

    .example-item p {
        font-size: 0.9rem;
    }

    .example-number {
        font-size: 2.5rem;
    }

    .example-arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
        margin: 0.3rem 0;
    }

    .example-pay {
        font-size: 1rem;
        padding: 0.8rem 1rem;
        word-wrap: break-word;
    }

    .example-separator {
        width: 40px;
        height: 2px;
        margin: 0.5rem auto;
    }

    .model-footer {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Results */
    .results-section {
        padding: 3rem 0;
    }

    .results-main-title {
        font-size: 1.6rem;
        padding: 0 1rem;
        line-height: 1.3;
        margin-bottom: 3rem;
    }

    .highlight-number {
        font-size: 2.5rem;
    }

    .results-simple {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .result-box {
        min-width: auto;
        width: 100%;
        max-width: 100%;
        padding: 2rem 1rem;
        box-sizing: border-box;
    }

    .result-box h3 {
        font-size: 1.2rem;
    }

    .result-emoji {
        font-size: 2.5rem;
    }

    .result-stat {
        font-size: 1.8rem;
        word-wrap: break-word;
    }

    .result-detail {
        font-size: 0.9rem;
    }

    .result-arrow {
        transform: rotate(90deg);
        font-size: 1.5rem;
        margin: 0.5rem 0;
    }

    .results-money {
        padding: 2rem 1rem;
        margin: 0 1rem;
        width: calc(100% - 2rem);
        box-sizing: border-box;
    }

    .money-label {
        font-size: 0.95rem;
    }

    .money-amount {
        font-size: 1.8rem;
        word-wrap: break-word;
    }

    /* Partners Cards */
    .partners-cards-section {
        padding: 3rem 0;
    }

    .partners-cards-title {
        font-size: 1.6rem;
        padding: 0 1rem;
        margin-bottom: 3rem;
    }

    .partners-cards-grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .partner-card {
        min-height: auto;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .card-image {
        padding: 1rem;
    }

    .card-badge {
        font-size: 0.7rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-description {
        font-size: 0.9rem;
    }

    /* Trust */
    .trust-section {
        padding: 3rem 0;
    }

    .trust-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .trust-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .trust-badges {
        padding: 0 1rem;
        gap: 2rem;
    }

    .trust-badge {
        padding: 2rem 1.5rem;
    }

    .badge-icon-container {
        width: 90px;
        height: 90px;
    }

    .badge-title {
        font-size: 1.2rem;
    }

    .badge-text {
        font-size: 0.95rem;
    }

    /* Platform */
    .platform-section {
        padding: 3rem 0;
    }

    .platform-content {
        gap: 2rem;
    }

    .platform-text {
        text-align: center;
        padding: 0 1rem;
        order: 2;
    }

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

    .platform-description,
    .platform-highlight {
        font-size: 1rem;
    }

    .platform-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-platform-primary,
    .btn-platform-secondary {
        width: 100%;
        padding: 1rem;
    }

    .platform-image {
        order: 1;
    }

    .platform-mockup {
        padding: 1.5rem;
    }

    /* CTA Final */
    .cta-final-section {
        padding: 3rem 0;
    }

    .cta-final-content {
        gap: 2rem;
    }

    .cta-final-image {
        order: -1;
        text-align: center;
    }

    .cta-final-image img {
        max-width: 250px;
    }

    .cta-final-text {
        padding: 0 1rem;
        text-align: center;
    }

    .cta-final-title {
        font-size: 1.8rem;
    }

    .cta-final-description {
        font-size: 1rem;
    }

    .cta-final-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-large {
        width: 100%;
        padding: 1rem;
    }

    .cta-contact-info {
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    .footer-content-card {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        gap: 2rem;
    }

    .footer-logo {
        font-size: 2rem;
    }

    .footer-tagline {
        font-size: 0.9rem;
    }

    .footer-column {
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .social-link {
        width: 45px;
        height: 45px;
    }

    .section-title {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Ocultar elementos decorativos pesados */
    .clay-blob-3,
    .organic-shape-3,
    .circle-3 {
        display: none;
    }

    .clay-blob,
    .organic-shape,
    .plasticine-circle {
        opacity: 0.2;
        filter: blur(40px);
    }

    /* Mejoras táctiles */
    a, button, .btn {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }

    /* Evitar zoom en inputs */
    input, select, textarea {
        font-size: 16px !important;
    }
}

/* Tablet Landscape */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .problem-title {
        font-size: 6rem;
    }

    .solution-title {
        font-size: 2.5rem;
    }

    .how-works-title {
        font-size: 2.8rem;
    }

    .partners-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Small (iPhone SE, etc) */
@media (max-width: 375px) {
    .container {
        padding: 0 1rem;
    }

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

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

    .solution-title,
    .how-works-title {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .result-stat {
        font-size: 1.8rem;
    }

    .btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }

    .emoji {
        font-size: 1.3rem;
    }
}
