* {
    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;
    width: 100%;
    max-width: 100vw;
}

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

section {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #87CEEB 0%, #B0D8F0 50%, #D4E8F5 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Compensar navbar fixed */
}

/* Cloud-like background effect */
.hero::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.4) 0%, transparent 50%),
        radial-gradient(ellipse 600px 200px at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 700px 250px at 50% 60%, rgba(255, 255, 255, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 500px 150px at 70% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 400px 180px at 30% 70%, rgba(255, 255, 255, 0.25) 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(34, 197, 94, 0.3));
}

.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%;
    }
}

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

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(135, 206, 235, 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.2);
}

/* 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.25);
    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(0, 0, 0, 0.1),
        inset -2px -2px 8px rgba(255, 255, 255, 0.2),
        inset 2px 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

.logo-text {
    color: white;
}

.logo-icon {
    color: #10b981;
    margin: 0 3px;
    font-size: 1.5rem;
}

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

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

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

.dropdown-arrow {
    font-size: 0.8rem;
    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-primary-nav {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 
        -4px -4px 10px rgba(16, 185, 129, 0.4),
        4px 4px 10px rgba(5, 150, 105, 0.5),
        inset -2px -2px 6px rgba(16, 185, 129, 0.3),
        inset 2px 2px 6px rgba(5, 150, 105, 0.3);
}

.btn-primary-nav:hover {
    transform: translateY(-2px);
    box-shadow: 
        -6px -6px 14px rgba(16, 185, 129, 0.5),
        6px 6px 14px rgba(5, 150, 105, 0.6),
        inset -2px -2px 6px rgba(16, 185, 129, 0.3),
        inset 2px 2px 6px rgba(5, 150, 105, 0.3);
}

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

/* Rating */
.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: white;
    font-size: 0.9rem;
}

.stars {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #fbbf24;
    font-size: 1.1rem;
}

.star.half {
    position: relative;
    overflow: hidden;
}

.star.half::after {
    content: '★';
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    overflow: hidden;
    color: #fbbf24;
}

.rating-text {
    font-weight: 700;
    font-size: 1rem;
}

.rating-divider {
    opacity: 0.6;
}

.rating-description {
    font-weight: 500;
    opacity: 0.95;
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

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

.btn-primary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    box-shadow: 
        -6px -6px 16px rgba(16, 185, 129, 0.5),
        6px 6px 16px rgba(5, 150, 105, 0.6),
        inset -3px -3px 8px rgba(16, 185, 129, 0.4),
        inset 3px 3px 8px rgba(5, 150, 105, 0.4);
    border: 2px solid rgba(5, 150, 105, 0.8);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        -8px -8px 20px rgba(16, 185, 129, 0.6),
        8px 8px 20px rgba(5, 150, 105, 0.7),
        inset -3px -3px 8px rgba(16, 185, 129, 0.4),
        inset 3px 3px 8px rgba(5, 150, 105, 0.4);
}

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

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

/* App Badge */
.app-badge {
    position: absolute;
    right: 8%;
    top: 25%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem 1.2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 5;
    min-width: 240px;
}

.badge-header {
    font-size: 0.65rem;
    font-weight: 700;
    color: #10b981;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.badge-icon {
    flex-shrink: 0;
}

.badge-text {
    flex: 1;
}

.badge-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #1e293b;
    margin-bottom: 0.3rem;
}

.badge-stores {
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-stores svg {
    width: 14px;
    height: 14px;
    color: #10b981;
}

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

.video-container {
    width: 100%;
    max-width: 900px;
    border-radius: 20px;
    box-shadow: 
        -10px -10px 30px rgba(255, 255, 255, 0.1),
        10px 10px 30px rgba(0, 0, 0, 0.4),
        inset -2px -2px 8px rgba(255, 255, 255, 0.05),
        inset 2px 2px 8px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.15);
    background: #000;
}

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

/* Sobrecarga Section */
.sobrecarga-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 */
.sobrecarga-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 70%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.sobrecarga-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Formas orgánicas de plastilina */
.sobrecarga-section .container {
    position: relative;
    z-index: 2;
}

.sobrecarga-section .container::before,
.sobrecarga-section .container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    pointer-events: none;
}

.sobrecarga-section .container::before {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    top: -100px;
    left: -50px;
    animation: morphBlob1 8s ease-in-out infinite;
}

.sobrecarga-section .container::after {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
    bottom: -80px;
    right: -30px;
    animation: morphBlob2 10s ease-in-out infinite;
}

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

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

/* 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, #10b981 0%, #059669 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, #60a5fa 0%, #3b82f6 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, #fbbf24 0%, #f59e0b 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); }
}

/* Post-its decorativos */
.postit {
    position: absolute;
    width: 90px;
    height: 90px;
    transform: rotate(var(--rotation));
    box-shadow: 
        -5px -5px 14px rgba(255, 255, 255, 0.4),
        5px 5px 14px rgba(0, 0, 0, 0.2),
        inset -2px -2px 6px rgba(255, 255, 255, 0.3),
        inset 2px 2px 6px rgba(0, 0, 0, 0.1);
    animation: floatPostit 6s ease-in-out infinite;
    animation-delay: var(--postit-delay);
}

@keyframes floatPostit {
    0%, 100% {
        transform: translateY(0px) rotate(var(--rotation));
    }
    50% {
        transform: translateY(-15px) rotate(calc(var(--rotation) + 3deg));
    }
}

.postit-blue {
    background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 100%);
    top: 8%;
    right: 15%;
    --rotation: 12deg;
    --postit-delay: 0s;
}

.postit-purple {
    background: linear-gradient(135deg, #c4b5fd 0%, #a78bfa 100%);
    top: 15%;
    right: 10%;
    --rotation: -8deg;
    --postit-delay: 1s;
}

.postit-yellow {
    background: linear-gradient(135deg, #fde68a 0%, #fbbf24 100%);
    top: 12%;
    right: 18%;
    --rotation: 20deg;
    --postit-delay: 2s;
}

/* Título superior */
.sobrecarga-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 */
.sobrecarga-main {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

/* Texto principal */
.sobrecarga-text-wrapper {
    position: relative;
    z-index: 2;
}

.sobrecarga-title {
    font-size: 10rem;
    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);
}

/* Contenedor de imagen integrada */
.sobrecarga-image-container {
    display: inline-block;
    position: relative;
    margin: 0 -30px;
    z-index: 3;
}

.sobrecarga-character {
    width: 320px;
    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: 18%;
    left: 32%;
    --rotation: -2deg;
    --delay: 1s;
}

.label-4 {
    top: 35%;
    left: 25%;
    --rotation: 4deg;
    --delay: 1.5s;
}

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

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

.label-7 {
    bottom: 25%;
    right: 15%;
    --rotation: -4deg;
    --delay: 3s;
}

/* Features Section */
.features-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);
    transition: background 0.5s ease;
}

/* Textura de papel arrugado */
.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter2)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Manchas de plastilina decorativas */
.features-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.18) 0%, rgba(59, 130, 246, 0.12) 40%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morphShape 15s ease-in-out infinite;
    filter: blur(60px);
    box-shadow: 
        inset -20px -20px 50px rgba(255, 255, 255, 0.3),
        inset 20px 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 0;
}

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

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

/* Formas orgánicas decorativas */
.organic-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(139, 92, 246, 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);
    }
}

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

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

.features-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 */
.features-text {
    padding: 2rem 0;
}

.features-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, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.brand-name-inline {
    color: #10b981;
    font-weight: 700;
}

.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);
    }
}

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

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

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

.features-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;
    transition: transform 0.3s ease;
}

.channel-icon:hover {
    transform: scale(1.2);
}

.whatsapp {
    color: #25D366;
}

.telegram {
    color: #0088cc;
}

.email {
    color: #ea4335;
}

/* Action Section */
.action-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);
    transition: background 0.5s ease;
}

/* Textura granulada de plastilina */
.action-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter3'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter3)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Blobs de plastilina decorativos */
.action-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 10% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 35%),
        radial-gradient(ellipse at 90% 70%, rgba(16, 185, 129, 0.12) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 50%, rgba(251, 191, 36, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(236, 72, 153, 0.08) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}

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

/* Elementos decorativos flotantes */
.action-section .container::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(147, 197, 253, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: 10%;
    right: 5%;
    filter: blur(50px);
    animation: floatDecor1 12s ease-in-out infinite;
}

.action-section .container::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: 15%;
    left: 8%;
    filter: blur(45px);
    animation: floatDecor2 10s ease-in-out infinite;
}

@keyframes floatDecor1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 40px); }
}

@keyframes floatDecor2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(40px, -30px); }
}

/* 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, #3b82f6 0%, #2563eb 40%, transparent 70%);
    top: 8%;
    left: 8%;
    animation: plasticineFloat1 11s ease-in-out infinite;
}

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

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

.circle-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #ec4899 0%, #db2777 40%, transparent 70%);
    bottom: 18%;
    right: 20%;
    animation: plasticineFloat4 14s 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); }
}

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

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

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

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

.highlight-blue {
    color: #3b82f6;
    font-weight: 700;
}

.action-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;
}

.btn-action:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 
        -8px -8px 20px rgba(31, 41, 55, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.7),
        inset -2px -2px 8px rgba(31, 41, 55, 0.6),
        inset 2px 2px 8px rgba(0, 0, 0, 0.4);
}

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

.action-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);
    }
}

/* Cards Section */
.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;
    box-shadow: 
        inset 0 10px 40px rgba(255, 255, 255, 0.8),
        inset 0 -10px 40px rgba(0, 0, 0, 0.05);
    transition: background 0.5s ease;
}

/* Textura de fondo */
.cards-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(139, 92, 246, 0.1) 0%, transparent 35%),
        radial-gradient(circle at 85% 40%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 70%, rgba(59, 130, 246, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.09) 0%, transparent 38%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter4'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter4)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

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

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

/* Feature Cards */
.feature-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;
}

.feature-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);
}

/* Efecto de textura en cada card */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='cardNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23cardNoise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Colores de las cards */
.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, #059669 0%, #047857 100%);
    color: white;
}

.card-teal {
    background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
    color: white;
}

/* Imagen del mockup */
.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;
}

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

/* Contenido de la card */
.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;
}

/* Elementos decorativos en las cards */
.card-purple::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    filter: blur(40px);
}

.card-blue::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -40px;
    right: -40px;
    filter: blur(35px);
}

.card-green::after {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -60px;
    left: -60px;
    filter: blur(45px);
}

.card-teal::after {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: -45px;
    left: -45px;
    filter: blur(38px);
}

/* Platform Section */
.platform-section {
    padding: 8rem 0;
    background: 
        linear-gradient(135deg, #fafafa 0%, #ffffff 25%, #f3f4f6 50%, #ffffff 75%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 12px 45px rgba(255, 255, 255, 0.9),
        inset 0 -12px 45px rgba(0, 0, 0, 0.04);
    transition: background 0.5s ease;
}

/* Textura sutil */
.platform-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(ellipse at 80% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 20% 60%, rgba(59, 130, 246, 0.08) 0%, transparent 45%),
        radial-gradient(ellipse at 50% 90%, rgba(139, 92, 246, 0.07) 0%, transparent 38%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='platformNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23platformNoise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

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

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

/* Platform Text */
.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;
}

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

.platform-highlight {
    font-size: 1.1rem;
    color: #10b981;
    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),
        inset -2px -2px 8px rgba(31, 41, 55, 0.6),
        inset 2px 2px 8px rgba(0, 0, 0, 0.4);
    text-decoration: none;
    display: inline-block;
}

.btn-platform-primary:hover {
    background: #1f2937;
    transform: translateY(-2px);
    box-shadow: 
        -8px -8px 20px rgba(31, 41, 55, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.7),
        inset -2px -2px 8px rgba(31, 41, 55, 0.6),
        inset 2px 2px 8px rgba(0, 0, 0, 0.4);
}

.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),
        inset -2px -2px 6px rgba(255, 255, 255, 0.6),
        inset 2px 2px 6px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: inline-block;
}

.btn-platform-secondary:hover {
    border-color: #10b981;
    color: #10b981;
    transform: translateY(-2px);
    box-shadow: 
        -7px -7px 18px rgba(255, 255, 255, 1),
        7px 7px 18px rgba(0, 0, 0, 0.15),
        inset -2px -2px 6px rgba(255, 255, 255, 0.6),
        inset 2px 2px 6px rgba(0, 0, 0, 0.06);
}

/* Platform Image */
.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),
        inset -3px -3px 10px rgba(255, 255, 255, 0.5),
        inset 3px 3px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.platform-mockup::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.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;
}

/* Trust Section */
.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;
    box-shadow: 
        inset 0 10px 40px rgba(255, 255, 255, 0.85),
        inset 0 -10px 40px rgba(0, 0, 0, 0.06);
    transition: background 0.5s ease;
}

/* Textura */
.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 30%, rgba(16, 185, 129, 0.12) 0%, transparent 40%),
        radial-gradient(ellipse at 75% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 42%),
        radial-gradient(circle at 50% 80%, rgba(251, 191, 36, 0.08) 0%, transparent 38%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='trustNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23trustNoise)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
}

.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;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Trust Badge */
.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, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-8px);
    box-shadow: 
        -12px -12px 28px rgba(255, 255, 255, 1),
        12px 12px 28px rgba(0, 0, 0, 0.15),
        inset -2px -2px 8px rgba(255, 255, 255, 0.5),
        inset 2px 2px 8px rgba(0, 0, 0, 0.06);
}

.trust-badge:hover::before {
    opacity: 1;
}

.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 #10b981;
    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(16, 185, 129, 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;
}

.trust-link {
    display: inline-block;
    color: #10b981;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.trust-link:hover {
    border-bottom-color: #10b981;
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    padding: 8rem 0;
    background: 
        linear-gradient(180deg, #ffffff 0%, #f3f4f6 15%, #e5e7eb 30%, #f9fafb 50%, #e5e7eb 70%, #f3f4f6 85%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 
        inset 0 15px 50px rgba(255, 255, 255, 0.9),
        inset 0 -15px 50px rgba(0, 0, 0, 0.07);
    transition: background 0.5s ease;
}

/* Textura de fondo */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='faqNoise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23faqNoise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Blobs decorativos */
.faq-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: 0;
    box-shadow: 
        inset -15px -15px 40px rgba(255, 255, 255, 0.4),
        inset 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #10b981 0%, #059669 30%, transparent 70%);
    top: 10%;
    left: 5%;
    animation: faqFloat1 12s ease-in-out infinite;
}

.faq-blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #3b82f6 0%, #2563eb 30%, transparent 70%);
    bottom: 15%;
    right: 8%;
    animation: faqFloat2 14s ease-in-out infinite;
}

.faq-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fbbf24 0%, #f59e0b 30%, transparent 70%);
    top: 50%;
    right: 15%;
    animation: faqFloat3 10s ease-in-out infinite;
}

@keyframes faqFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -40px) scale(1.15); }
}

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

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

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

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.faq-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
    font-weight: 500;
}

/* FAQ Grid */
.faq-grid {
    max-width: 900px;
    margin: 0 auto 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 20px;
    box-shadow: 
        -6px -6px 16px rgba(255, 255, 255, 0.9),
        6px 6px 16px rgba(0, 0, 0, 0.1),
        inset -2px -2px 6px rgba(255, 255, 255, 0.4),
        inset 2px 2px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 1),
        8px 8px 20px rgba(0, 0, 0, 0.15),
        inset -2px -2px 6px rgba(255, 255, 255, 0.4),
        inset 2px 2px 6px rgba(0, 0, 0, 0.05);
    border-color: #10b981;
}

.faq-item.active {
    border-color: #10b981;
    box-shadow: 
        -8px -8px 20px rgba(16, 185, 129, 0.2),
        8px 8px 20px rgba(16, 185, 129, 0.25),
        inset -2px -2px 6px rgba(255, 255, 255, 0.4),
        inset 2px 2px 6px rgba(16, 185, 129, 0.1);
}

/* FAQ Question Button */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: #111827;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #10b981;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #10b981;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.03) 100%);
    border-radius: 24px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 
        -8px -8px 20px rgba(255, 255, 255, 0.8),
        8px 8px 20px rgba(16, 185, 129, 0.15),
        inset -3px -3px 10px rgba(255, 255, 255, 0.5),
        inset 3px 3px 10px rgba(16, 185, 129, 0.08);
}

.faq-cta-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 1.5rem;
}

.btn-faq {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    box-shadow: 
        -6px -6px 16px rgba(16, 185, 129, 0.5),
        6px 6px 16px rgba(5, 150, 105, 0.6),
        inset -3px -3px 8px rgba(16, 185, 129, 0.4),
        inset 3px 3px 8px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
}

.btn-faq:hover {
    transform: translateY(-3px);
    box-shadow: 
        -8px -8px 20px rgba(16, 185, 129, 0.6),
        8px 8px 20px rgba(5, 150, 105, 0.7),
        inset -3px -3px 8px rgba(16, 185, 129, 0.4),
        inset 3px 3px 8px rgba(5, 150, 105, 0.4);
}

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

/* Footer Background */
.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 Hero */
.footer-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.footer-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.footer-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.footer-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.btn-footer-primary:hover {
    background: #1f2937;
    transform: translateY(-3px);
    box-shadow: 
        -8px -8px 20px rgba(31, 41, 55, 0.9),
        8px 8px 20px rgba(0, 0, 0, 0.8),
        inset -2px -2px 8px rgba(31, 41, 55, 0.6),
        inset 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.btn-footer-secondary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    border: 2px solid rgba(5, 150, 105, 0.8);
    box-shadow: 
        -6px -6px 16px rgba(16, 185, 129, 0.5),
        6px 6px 16px rgba(5, 150, 105, 0.6),
        inset -2px -2px 8px rgba(16, 185, 129, 0.4),
        inset 2px 2px 8px rgba(5, 150, 105, 0.4);
    transition: all 0.3s ease;
}

.btn-footer-secondary:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-3px);
    border-color: rgba(5, 150, 105, 1);
    box-shadow: 
        -8px -8px 20px rgba(16, 185, 129, 0.6),
        8px 8px 20px rgba(5, 150, 105, 0.7),
        inset -2px -2px 8px rgba(16, 185, 129, 0.4),
        inset 2px 2px 8px rgba(5, 150, 105, 0.4);
}

/* Footer Content Card */
.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.3),
        inset -3px -3px 10px rgba(255, 255, 255, 0.4),
        inset 3px 3px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Footer Grid */
.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 Brand */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    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 */
.footer-social {
    display: flex;
    gap: 0.8rem;
}

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

.social-link:hover {
    background: #10b981;
    color: white;
    transform: translateY(-3px);
    box-shadow: 
        -5px -5px 14px rgba(16, 185, 129, 0.5),
        5px 5px 14px rgba(5, 150, 105, 0.6),
        inset -2px -2px 6px rgba(16, 185, 129, 0.3),
        inset 2px 2px 6px rgba(5, 150, 105, 0.3);
}

/* Footer Column Title */
.footer-column-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Links */
.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;
    display: inline-block;
}

.footer-links a:hover {
    color: #10b981;
    transform: translateX(5px);
}

/* Footer Bottom */
.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: #10b981;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* 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.5rem;
    }

    /* Menu Mobile */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85vw;
        max-width: 280px;
        height: 100vh;
        background: rgba(135, 206, 235, 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%;
        text-align: center;
        margin-top: 1rem;
        padding: 1rem;
    }

    /* 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;
    }

    /* Optimización de Claymorphism para mobile */
    .nav-content {
        box-shadow: 
            -4px -4px 10px rgba(255, 255, 255, 0.4),
            4px 4px 10px rgba(0, 0, 0, 0.08),
            inset -1px -1px 4px rgba(255, 255, 255, 0.2),
            inset 1px 1px 4px rgba(0, 0, 0, 0.05);
    }

    /* Botones optimizados para mobile */
    .btn-primary,
    .btn-primary-nav,
    .btn-faq {
        box-shadow: 
            -4px -4px 10px rgba(16, 185, 129, 0.4),
            4px 4px 10px rgba(5, 150, 105, 0.5),
            inset -1px -1px 4px rgba(16, 185, 129, 0.3),
            inset 1px 1px 4px rgba(5, 150, 105, 0.3);
    }

    .btn-secondary {
        box-shadow: 
            -4px -4px 10px rgba(255, 255, 255, 0.3),
            4px 4px 10px rgba(0, 0, 0, 0.12),
            inset -1px -1px 4px rgba(255, 255, 255, 0.2),
            inset 1px 1px 4px rgba(0, 0, 0, 0.08);
    }

    .btn-action,
    .btn-platform-primary,
    .btn-footer-primary {
        box-shadow: 
            -4px -4px 10px rgba(31, 41, 55, 0.6),
            4px 4px 10px rgba(0, 0, 0, 0.5),
            inset -1px -1px 4px rgba(31, 41, 55, 0.5),
            inset 1px 1px 4px rgba(0, 0, 0, 0.3);
    }

    .btn-platform-secondary {
        box-shadow: 
            -3px -3px 8px rgba(255, 255, 255, 0.8),
            3px 3px 8px rgba(0, 0, 0, 0.1),
            inset -1px -1px 3px rgba(255, 255, 255, 0.5),
            inset 1px 1px 3px rgba(0, 0, 0, 0.05);
    }

    .btn-footer-secondary {
        box-shadow: 
            -4px -4px 10px rgba(16, 185, 129, 0.4),
            4px 4px 10px rgba(5, 150, 105, 0.5),
            inset -1px -1px 4px rgba(16, 185, 129, 0.3),
            inset 1px 1px 4px rgba(5, 150, 105, 0.3);
    }

    /* Tarjetas optimizadas */
    .feature-card {
        box-shadow: 
            -6px -6px 16px rgba(255, 255, 255, 0.08),
            6px 6px 16px rgba(0, 0, 0, 0.25),
            inset -2px -2px 6px rgba(255, 255, 255, 0.08),
            inset 2px 2px 6px rgba(0, 0, 0, 0.15);
    }

    .feature-card:hover {
        box-shadow: 
            -8px -8px 20px rgba(255, 255, 255, 0.12),
            8px 8px 20px rgba(0, 0, 0, 0.28),
            inset -2px -2px 6px rgba(255, 255, 255, 0.08),
            inset 2px 2px 6px rgba(0, 0, 0, 0.15);
    }

    .card-image {
        box-shadow: 
            -4px -4px 10px rgba(255, 255, 255, 0.06),
            4px 4px 10px rgba(0, 0, 0, 0.25),
            inset -1px -1px 4px rgba(255, 255, 255, 0.04),
            inset 1px 1px 4px rgba(0, 0, 0, 0.12);
    }

    .trust-badge {
        box-shadow: 
            -5px -5px 12px rgba(255, 255, 255, 0.8),
            5px 5px 12px rgba(0, 0, 0, 0.1),
            inset -1px -1px 4px rgba(255, 255, 255, 0.4),
            inset 1px 1px 4px rgba(0, 0, 0, 0.05);
    }

    .trust-badge:hover {
        box-shadow: 
            -7px -7px 16px rgba(255, 255, 255, 0.9),
            7px 7px 16px rgba(0, 0, 0, 0.12),
            inset -1px -1px 4px rgba(255, 255, 255, 0.4),
            inset 1px 1px 4px rgba(0, 0, 0, 0.05);
    }

    .badge-icon-container {
        box-shadow: 
            -4px -4px 10px rgba(255, 255, 255, 0.8),
            4px 4px 10px rgba(0, 0, 0, 0.08),
            inset -2px -2px 5px rgba(255, 255, 255, 0.4),
            inset 2px 2px 5px rgba(16, 185, 129, 0.12);
    }

    .faq-item {
        box-shadow: 
            -4px -4px 10px rgba(255, 255, 255, 0.8),
            4px 4px 10px rgba(0, 0, 0, 0.08),
            inset -1px -1px 3px rgba(255, 255, 255, 0.3),
            inset 1px 1px 3px rgba(0, 0, 0, 0.04);
    }

    .faq-item:hover,
    .faq-item.active {
        box-shadow: 
            -5px -5px 12px rgba(16, 185, 129, 0.15),
            5px 5px 12px rgba(16, 185, 129, 0.2),
            inset -1px -1px 3px rgba(255, 255, 255, 0.3),
            inset 1px 1px 3px rgba(16, 185, 129, 0.08);
    }

    .faq-cta {
        box-shadow: 
            -5px -5px 12px rgba(255, 255, 255, 0.7),
            5px 5px 12px rgba(16, 185, 129, 0.12),
            inset -2px -2px 6px rgba(255, 255, 255, 0.4),
            inset 2px 2px 6px rgba(16, 185, 129, 0.06);
    }

    .footer-content-card {
        box-shadow: 
            -8px -8px 20px rgba(255, 255, 255, 0.5),
            8px 8px 20px rgba(0, 0, 0, 0.25),
            inset -2px -2px 6px rgba(255, 255, 255, 0.3),
            inset 2px 2px 6px rgba(0, 0, 0, 0.08);
    }

    .platform-mockup {
        box-shadow: 
            -6px -6px 18px rgba(255, 255, 255, 0.8),
            6px 6px 18px rgba(0, 0, 0, 0.15),
            inset -2px -2px 6px rgba(255, 255, 255, 0.4),
            inset 2px 2px 6px rgba(0, 0, 0, 0.08);
    }

    .video-container {
        box-shadow: 
            -6px -6px 18px rgba(255, 255, 255, 0.08),
            6px 6px 18px rgba(0, 0, 0, 0.3),
            inset -1px -1px 4px rgba(255, 255, 255, 0.04),
            inset 1px 1px 4px rgba(0, 0, 0, 0.25);
    }

    .floating-label {
        box-shadow: 
            -3px -3px 8px rgba(255, 255, 255, 0.7),
            3px 3px 8px rgba(0, 0, 0, 0.12),
            inset -1px -1px 3px rgba(255, 255, 255, 0.4),
            inset 1px 1px 3px rgba(0, 0, 0, 0.06);
    }

    .postit {
        box-shadow: 
            -3px -3px 8px rgba(255, 255, 255, 0.3),
            3px 3px 8px rgba(0, 0, 0, 0.15),
            inset -1px -1px 3px rgba(255, 255, 255, 0.2),
            inset 1px 1px 3px rgba(0, 0, 0, 0.08);
    }

    .card-badge {
        box-shadow: 
            -2px -2px 6px rgba(255, 255, 255, 0.12),
            2px 2px 6px rgba(0, 0, 0, 0.15),
            inset -1px -1px 2px rgba(255, 255, 255, 0.08),
            inset 1px 1px 2px rgba(0, 0, 0, 0.12);
    }

    .social-link {
        box-shadow: 
            -3px -3px 8px rgba(255, 255, 255, 0.8),
            3px 3px 8px rgba(0, 0, 0, 0.08),
            inset -1px -1px 3px rgba(255, 255, 255, 0.4),
            inset 1px 1px 3px rgba(0, 0, 0, 0.04);
    }

    .social-link:hover {
        box-shadow: 
            -4px -4px 10px rgba(16, 185, 129, 0.4),
            4px 4px 10px rgba(5, 150, 105, 0.5),
            inset -1px -1px 3px rgba(16, 185, 129, 0.25),
            inset 1px 1px 3px rgba(5, 150, 105, 0.25);
    }

    /* Fondos optimizados para mobile */
    .sobrecarga-section,
    .features-section,
    .action-section,
    .cards-section,
    .platform-section,
    .trust-section,
    .faq-section {
        box-shadow: 
            inset 0 8px 25px rgba(255, 255, 255, 0.6),
            inset 0 -8px 25px rgba(0, 0, 0, 0.04);
    }

    /* Simplificar blobs en mobile */
    .clay-blob,
    .organic-shape,
    .plasticine-circle,
    .faq-blob {
        filter: blur(40px);
        opacity: 0.2;
    }

    /* Logo más pequeño en mobile */
    .logo {
        font-size: 1.5rem;
    }

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

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

    .rating {
        font-size: 0.85rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .app-badge {
        position: static;
        margin: 2rem auto;
        max-width: 300px;
    }

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

    .element-1,
    .element-2,
    .element-3 {
        display: none !important;
    }

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

    .video-container {
        max-width: 100%;
        border-radius: 12px;
        border: 2px solid rgba(255, 255, 255, 0.15);
    }

    .hero-video {
        border-radius: 10px;
    }

    /* Ajustar botones en mobile */
    .btn {
        padding: 0.8rem 1.8rem;
        font-size: 0.9rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .logo-text-large {
        font-size: 2rem;
    }

    /* Sobrecarga responsive */
    .sobrecarga-section {
        padding: 3rem 0;
        min-height: auto;
    }

    .sobrecarga-subtitle {
        font-size: 1.2rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }

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

    .sobrecarga-title {
        font-size: 2.8rem;
        flex-direction: column;
        gap: 1rem;
    }

    .sobrecarga-image-container {
        margin: 0.5rem 0;
    }

    .sobrecarga-character {
        width: 140px;
    }

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

    .postit {
        width: 50px;
        height: 50px;
        display: none; /* Ocultar en mobile para más limpieza */
    }

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

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

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

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

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

    .label-6 {
        top: 25%;
        right: 8%;
    }

    .label-7 {
        display: none; /* Reducir cantidad en mobile */
    }

    /* Reducir blobs en móvil */
    .clay-blob-2,
    .clay-blob-3 {
        width: 120px;
        height: 120px;
        opacity: 0.15;
    }

    .clay-blob-1 {
        width: 150px;
        height: 150px;
        opacity: 0.2;
    }

    /* Features responsive */
    .features-section {
        padding: 3rem 0;
        min-height: auto;
    }

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

    .features-image {
        order: -1; /* Imagen primero en mobile */
    }

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

    .features-text {
        padding: 0;
        text-align: center;
    }

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

    .features-title .emoji {
        font-size: 1.5rem;
    }

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

    .features-subtitle .emoji {
        font-size: 1.2rem;
    }

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

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

    .channel-icon {
        font-size: 1.1rem;
    }

    /* Reducir formas orgánicas en móvil */
    .organic-shape-2,
    .organic-shape-3 {
        width: 180px;
        height: 180px;
        opacity: 0.15;
    }

    .organic-shape-1 {
        width: 200px;
        height: 200px;
        opacity: 0.2;
    }

    /* Action responsive */
    .action-section {
        padding: 3rem 0;
        min-height: auto;
    }

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

    .action-text {
        text-align: center;
        padding: 0;
        order: 2; /* Texto después de imagen */
    }

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

    .action-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-action {
        font-size: 0.9rem;
        padding: 0.9rem 1.5rem;
        width: 100%;
    }

    .action-image {
        justify-content: center;
        order: 1; /* Imagen primero */
    }

    .action-flowers {
        max-width: 280px;
    }

    /* Simplificar círculos en móvil */
    .circle-3,
    .circle-4 {
        width: 120px;
        height: 120px;
        opacity: 0.15;
    }

    .circle-1,
    .circle-2 {
        width: 150px;
        height: 150px;
        opacity: 0.2;
    }

    /* Platform responsive */
    .platform-section {
        padding: 3rem 0;
        min-height: auto;
    }

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

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

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

    .platform-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

    .platform-image {
        order: 1;
    }

    .platform-mockup {
        padding: 1.5rem;
    }

    .whatsapp-chat {
        max-width: 100%;
    }

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

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

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

    .trust-badges {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }

    .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;
    }

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

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

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

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

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

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

    .card-image {
        padding: 1rem;
    }

    .card-mockup {
        border-radius: 8px;
    }

    /* FAQ responsive */
    .faq-section {
        padding: 3rem 0;
    }

    .faq-header {
        margin-bottom: 2rem;
    }

    .faq-title {
        font-size: 1.8rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

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

    .faq-grid {
        padding: 0 1rem;
        gap: 1rem;
    }

    .faq-item {
        border-radius: 16px;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem 1.2rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1rem 1.2rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
        border-radius: 20px;
    }

    .faq-cta-text {
        font-size: 1rem;
    }

    .btn-faq {
        width: 100%;
    }

    .faq-blob-2,
    .faq-blob-3 {
        width: 180px;
        height: 180px;
        opacity: 0.12;
    }

    .faq-blob-1 {
        width: 220px;
        height: 220px;
        opacity: 0.15;
    }

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

    .footer-hero {
        margin-bottom: 3rem;
    }

    .footer-hero-title {
        font-size: 1.8rem;
        padding: 0 1rem;
        line-height: 1.3;
    }

    .footer-hero-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

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

    .btn-footer-primary,
    .btn-footer-secondary {
        padding: 1rem;
        font-size: 0.95rem;
        width: 100%;
    }

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

    /* Optimizar hover effects para touch en mobile */
    .btn:active,
    .feature-card:active,
    .trust-badge:active,
    .faq-item:active,
    .social-link:active {
        transform: scale(0.98);
    }

    /* Mejorar legibilidad de textos con fondos texturizados */
    .sobrecarga-title,
    .features-title,
    .action-title,
    .platform-title,
    .trust-title,
    .faq-title {
        text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

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

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

    .footer-social {
        justify-content: center;
        margin-top: 1rem;
    }

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

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

    .footer-column-title {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-links {
        gap: 0.7rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .footer-legal {
        font-size: 0.75rem;
        line-height: 1.8;
        padding: 0 1rem;
    }

    .footer-legal a {
        display: inline-block;
        margin: 0 0.3rem;
    }

    /* 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: 3.5rem;
    }

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

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

    .action-title {
        font-size: 2.8rem;
    }

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

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

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

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

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

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

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

