/* Estilos globales - Yapaseo | Agencia de Marketing Digital */
        :root {
            --primary: #0f4cbe;
            --accent: #40CFFF;
            --bg: #030712;
            --card-bg: #111827;
            --text-gray: #9ca3af;
            --yellow-brand: #FFDF39; 
            --dark-hero: #000000;
            --scroll-bg: #000b21; 
            --footer-bg: #11151d;
        }

        * {
            margin: 0; padding: 0; box-sizing: border-box;
            font-family: 'Inter', sans-serif;
            scroll-behavior: smooth;
        }

        body { background-color: var(--bg); color: white; line-height: 1.6; overflow-x: hidden; }

        /* HEADER INTELIGENTE */
        nav {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 4%; position: fixed; width: 100%; z-index: 100;
            background-color: var(--yellow-brand) !important;
            transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
            top: 0; left: 0;
        }
        nav.nav-hidden { transform: translateY(-100%); }
        nav.nav-scrolled {
            background-color: var(--scroll-bg) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        }
        nav.nav-scrolled .logo-divider { color: rgba(255, 255, 255, 0.4); }
        nav.nav-scrolled .logo-tagline { color: #ffffff; }
        nav.nav-scrolled .nav-links a { color: #ffffff; }
        nav.nav-scrolled .nav-links a:hover { color: var(--accent); }

        .logo-container { display: flex; align-items: center; text-decoration: none; color: var(--dark-hero); cursor: pointer; }
        .logo-img { height: 45px; width: auto; display: block; }
        .logo-light { display: none; }
        .logo-dark { display: block; }
        nav.nav-scrolled .logo-dark { display: none; }
        nav.nav-scrolled .logo-light { display: block; }
        .logo-divider { margin: 0 12px; color: rgba(0,0,0,0.3); font-size: 18px; font-weight: 300; transition: color 0.4s ease; }
        .logo-tagline { font-size: 14px; font-weight: 700; color: rgba(0,0,0,0.8); letter-spacing: 0.2px; text-transform: none; transition: color 0.4s ease; }
        .logo-container:hover .logo-tagline { color: var(--primary); }
        nav.nav-scrolled .logo-container:hover .logo-tagline { color: var(--accent); }

        .nav-links { display: flex; gap: 18px; align-items: center; margin-left: auto; margin-right: 30px; }
        .nav-links a { color: rgba(0,0,0,0.8); text-decoration: none; font-size: 14px; font-weight: 700; transition: color 0.4s ease; letter-spacing: 0.2px; cursor: pointer; }
        .nav-links a:hover { color: var(--primary); }

        .btn-nav-ws {
            background: var(--primary); color: white; padding: 10px 22px;
            border-radius: 8px; text-decoration: none; font-weight: bold; font-size: 13px;
            transition: 0.3s; display: flex; align-items: center; gap: 8px;
        }
        .btn-nav-ws:hover { background: #0a378a; }

        /* HERO */
        .hero {
            min-height: 100vh; min-height: 100dvh; 
            display: flex; flex-direction: column; justify-content: space-between;
            padding: 140px 6% 0 6%; position: relative; 
            background-color: var(--yellow-brand); overflow: hidden; 
        }
        .hero-container { display: flex; align-items: center; justify-content: space-between; width: 100%; z-index: 2; gap: 20px; flex-grow: 1; }
        .hero-content { max-width: 48%; text-align: left; padding-bottom: 80px; }
        .hero-content h1 { 
            font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(26px, 3.8vw, 46px); 
            line-height: 0.8; margin-bottom: 0px; text-transform: uppercase; 
            letter-spacing: -0.5px; color: var(--dark-hero); display: flex; flex-direction: column; align-items: flex-start;
        }
        .hero-content h1 .highlight-black { font-family: 'Bebas Neue', sans-serif; font-weight: 900; font-size: clamp(80px, 12vw, 155px); letter-spacing: 0.02em; display: block; line-height: 0.86; margin: 12px 0 6px 0; padding: 0; transform: translateY(2px); }
        .hero-content h1 .sub-text { font-family: 'Montserrat', sans-serif; font-size: clamp(24px, 3.5vw, 42px); font-weight: 900; display: block; line-height: 0.85; letter-spacing: -0.8px; margin: 0; padding: 0; }
        
        .hero-image-wrapper { position: absolute; right: -2%; bottom: 0px; width: 58%; display: flex; justify-content: center; align-items: flex-end; z-index: 1; }
        .hero-image-wrapper img { width: 215%; max-width: 960px; height: auto; object-fit: contain; transform: translateY(35px); transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1); filter: drop-shadow(0 20px 50px rgba(0,0,0,0.25)); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 96%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 82%, rgba(0,0,0,0) 96%); }

        .features-bar { display: flex; justify-content: center; align-items: center; gap: 40px; padding: 24px 20px; width: 100%; margin: 0 auto; position: relative; z-index: 5; background: transparent; }
        .feature-item { color: var(--dark-hero); display: flex; align-items: center; gap: 10px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -0.3px; transition: all 0.3s ease; }
        .icon-gold { color: var(--dark-hero); font-size: 18px; }
        .features-divider { width: 1px; height: 20px; background-color: rgba(0, 0, 0, 0.15); }

        /* SERVICIOS */
        #servicios { background-color: #ffffff; color: #111827; padding: 100px 4% 80px 4%; }
        .services-header-box { text-align: center; margin-bottom: 70px; }
        #servicios .section-title { color: #000000; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(32px, 4vw, 52px); margin-bottom: 12px; letter-spacing: -0.5px; text-transform: uppercase; }
        .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 45px; max-width: 1140px; margin: 0 auto; align-items: stretch; }
        
        .service-card { background: #ffffff; border-radius: 24px; border: 1px solid #e5e7eb; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04); position: relative; }
        .card-icon-badge { position: absolute; top: -28px; left: 35px; width: 56px; height: 56px; border-radius: 50%; background-color: var(--dark-hero); color: var(--yellow-brand); display: flex; align-items: center; justify-content: center; font-size: 22px; z-index: 2; box-shadow: 0 6px 14px rgba(0,0,0,0.15); transition: all 0.3s ease; }
        .card-body-box { padding: 45px 25px 30px 25px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
        .service-card h3 { font-size: 22px; margin-bottom: 8px; font-weight: 800; color: #000000; font-family: 'Montserrat', sans-serif; }
        .card-intro-text { font-size: 13.5px; color: #4b5563; margin-bottom: 20px; line-height: 1.4; }
        .service-card ul { list-style: none; text-align: left; margin-bottom: 30px; flex-grow: 1; border-top: 1px dashed #e5e7eb; padding-top: 15px; }
        .service-card ul li { color: #1f2937; margin-bottom: 12px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 10px; }
        .service-card ul li i { font-size: 14px; color: #FFD43B; margin-bottom: 0; transition: color 0.3s ease; }
        .btn-card-premium { background: #09090b; color: var(--yellow-brand); padding: 14px 24px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 13px; letter-spacing: 0.5px; text-transform: uppercase; display: flex; align-items: center; justify-content: center; gap: 10px; transition: all 0.3s ease; border: none; }
        .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15, 76, 190, 0.12); border-color: var(--primary); }
        .service-card:hover .card-icon-badge { background-color: var(--primary); color: #ffffff; }
        .service-card:hover ul li i { color: var(--primary); }
        .service-card:hover .btn-card-premium { background: var(--primary); color: #ffffff; }

        /* WEBS QUE HEMOS DISEÑADO */
        .web-projects { background-color: #ffffff; padding: 0 4% 100px 4%; }
        .web-projects-header { text-align: center; margin-bottom: 55px; }
        .web-projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 35px; max-width: 1140px; margin: 0 auto; }
        .web-project-card { border-radius: 18px; overflow: hidden; border: 1px solid #e5e7eb; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); background: #ffffff; transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1); }
        .web-project-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(15, 76, 190, 0.12); border-color: var(--primary); }
        .browser-bar { display: flex; align-items: center; gap: 6px; padding: 10px 14px; background: #f3f4f6; border-bottom: 1px solid #e5e7eb; }
        .browser-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
        .browser-dot.red { background: #ff5f57; }
        .browser-dot.yellow { background: #febc2e; }
        .browser-dot.green { background: #28c840; }
        .web-project-card img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; }
        .web-project-info { padding: 22px 24px 26px 24px; }
        .web-project-info h3 { font-size: 18px; font-weight: 800; margin-bottom: 6px; font-family: 'Montserrat', sans-serif; color: #000000; }
        .web-project-info p { font-size: 13.5px; color: #4b5563; margin-bottom: 16px; }
        .web-project-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--primary); text-decoration: none; transition: color 0.3s ease; }
        .web-project-link:hover { color: #0a378a; }
        .web-project-link i { font-size: 11px; }

        /* PORTAFOLIO */
        section { padding: 100px 8%; position: relative; }
        .bento-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 400px); gap: 24px; max-width: 1200px; margin: 0 auto; }
        .bento-item { position: relative; border-radius: 30px; overflow: hidden; background: #0b0f17; cursor: pointer; }
        .bento-item.tall { grid-row: span 2; } 
        .bento-item img { width: 100%; height: 100%; height: 100%; object-fit: cover; transition: 0.6s; filter: brightness(0.9); }
        .bento-item:hover img { transform: scale(1.06); filter: brightness(1); }
        .bento-overlay { position: absolute; bottom: 0; left: 0; width: 100%; height: 75%; background: linear-gradient(to top, rgba(0,0,0,1) 5%, rgba(0,0,0,0.7) 40%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 35px; }
        .bento-overlay h3 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; color: #ffffff; letter-spacing: -0.5px; }

        /* FUNDADOR / SOBRE MÍ */
        .founder-section { background-color: var(--bg); padding: 160px 6% 100px 6%; color: white; }
        .founder-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: center; }
        .founder-photo-wrap { position: relative; display: flex; justify-content: center; }
        .founder-photo-wrap::before { content: ''; position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%); width: 340px; height: 340px; background: radial-gradient(circle, rgba(255, 223, 57, 0.18) 0%, rgba(15, 76, 190, 0.1) 45%, transparent 75%); z-index: 0; border-radius: 50%; filter: blur(10px); }
        .founder-photo-wrap img { position: relative; z-index: 1; width: 100%; max-width: 380px; height: auto; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 98%); mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 78%, rgba(0,0,0,0) 98%); }
        .founder-label { color: var(--accent); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; display: block; }
        .founder-name { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 4px; }
        .founder-role { color: var(--yellow-brand); font-weight: 700; font-size: 15px; margin-bottom: 20px; display: block; }
        .founder-bio { color: var(--text-gray); font-size: 16px; line-height: 1.7; margin-bottom: 30px; max-width: 520px; }
        .founder-stat { display: inline-flex; align-items: center; gap: 14px; background: var(--card-bg); border: 1px solid rgba(255,255,255,0.08); padding: 16px 24px; border-radius: 16px; }
        .founder-stat .stat-number { font-family: 'Bebas Neue', sans-serif; font-size: 40px; color: var(--yellow-brand); line-height: 1; }
        .founder-stat .stat-label { color: white; font-size: 13px; font-weight: 600; max-width: 140px; line-height: 1.3; }

        /* METODOLOGÍA */
        #metodologia { background-color: #ffffff; color: #0d1117; padding: 120px 6%; position: relative; overflow: hidden; }
        #metodologia::before { content: ''; position: absolute; top: 50%; left: 50%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255, 223, 57, 0.15) 0%, rgba(15, 76, 190, 0.05) 50%, transparent 70%); transform: translate(-50%, -50%); z-index: 1; pointer-events: none; animation: softGlow 12s infinite alternate ease-in-out; }
        @keyframes softGlow { 0% { transform: translate(-45%, -55%) scale(1); } 100% { transform: translate(-55%, -45%) scale(1.15); } }
        #metodologia .section-title { color: #000000; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(32px, 4.2vw, 52px); margin-bottom: 15px; letter-spacing: -0.8px; text-transform: uppercase; position: relative; z-index: 2; text-align: center; }
        .metodologia-subtitle { text-align: center; color: #4b5563; font-size: 16px; max-width: 600px; margin: 0 auto 80px auto; font-weight: 500; position: relative; z-index: 2; }
        .timeline-wrapper { position: relative; max-width: 1140px; margin: 0 auto; z-index: 2; padding: 20px 0; }
        .timeline-progress-bar { position: absolute; top: 45px; left: 10%; right: 10%; height: 4px; background: var(--yellow-brand); z-index: 1; border-radius: 2px; }
        .timeline-container { display: flex; justify-content: space-between; align-items: flex-start; position: relative; z-index: 2; gap: 30px; }
        .timeline-node { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
        .node-number { width: 54px; height: 54px; border-radius: 50%; background: #ffffff; border: 3px solid var(--yellow-brand); color: var(--dark-hero); font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; box-shadow: 0 4px 10px rgba(0,0,0,0.05); transition: all 0.4s ease; position: relative; }
        .node-number::after { content: ''; position: absolute; width: 100%; height: 100%; border-radius: 50%; border: 2px solid var(--yellow-brand); opacity: 0.4; animation: nodePulse 2s infinite ease-out; }
        @keyframes nodePulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.3); opacity: 0; } }
        .node-card { background: #ffffff; padding: 35px 25px; border-radius: 20px; border: 1px solid #e5e7eb; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); width: 100%; }
        .node-card i { font-size: 32px; color: var(--yellow-brand); margin-bottom: 18px; display: inline-block; transition: transform 0.3s ease; }
        .node-card h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; color: #000000; margin-bottom: 12px; }
        .node-card p { font-size: 14px; color: #4b5563; line-height: 1.5; }
        .timeline-node:hover .node-number { background: var(--yellow-brand); color: var(--dark-hero); transform: scale(1.05); }
        .timeline-node:hover .node-card { transform: translateY(-8px); border-color: var(--yellow-brand); box-shadow: 0 20px 40px rgba(255, 223, 57, 0.15); }
        .timeline-node:hover .node-card i { transform: scale(1.1) rotate(5deg); color: var(--primary); }

        /* TESTIMONIOS */
        #testimonios {
            background-color: #f9fafb; 
            padding: 100px 6%;
            color: #111827;
        }

        .testi-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .testi-header h2 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: clamp(32px, 4vw, 42px);
            color: #111827;
            margin-bottom: 8px;
        }

        .testi-subtitle-text {
            color: #6b7280;
            font-size: 16px;
            font-weight: 400;
        }

        .testi-professional-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .testi-item-wrapper {
            display: flex;
            flex-direction: column;
        }

        .testi-bubble-card {
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 4px;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            margin-bottom: 25px; 
            box-shadow: 0 2px 10px rgba(0,0,0,0.01);
            transition: transform 0.3s ease;
        }

        .testi-bubble-card:hover {
            transform: translateY(-5px);
        }

        .testi-bubble-card::after {
            content: '';
            position: absolute;
            bottom: -9px;
            left: 50%;
            transform: translateX(-50%) rotate(45deg);
            width: 16px;
            height: 16px;
            background: #ffffff;
            border-right: 1px solid #e5e7eb;
            border-bottom: 1px solid #e5e7eb;
        }

        .quote-icon-container {
            margin-bottom: 20px;
        }

        .quote-icon-container i {
            font-size: 28px;
            color: #9ca3af; 
        }

        .testi-bubble-card p {
            color: #6b7280;
            font-size: 14.5px;
            line-height: 1.7;
            font-weight: 400;
        }

        .testi-author-area {
            text-align: center;
        }

        .testi-logo-img {
            width: 70px;
            height: 70px;
            border-radius: 12px; 
            background-color: #ffffff;
            border: 1px solid #f3f4f6;
            object-fit: contain; 
            padding: 5px; 
            margin: 0 auto 15px auto;
            display: block;
            box-shadow: 0 4px 6px rgba(0,0,0,0.04);
        }

        .testi-author-area h4 {
            color: #111827;
            font-family: 'Montserrat', sans-serif;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .testi-author-area .author-name {
            display: block;
            color: #6b7280;
            font-size: 14px;
        }

        .testi-author-area .author-role {
            display: block;
            color: #9ca3af;
            font-size: 13px;
            font-style: italic;
        }

        /* CONTACTO Y FOOTER */
        #contacto { padding-top: 100px; }
        .contact-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; max-width: 1100px; margin: 0 auto; background: linear-gradient(135deg, var(--card-bg), rgba(0, 129, 201, 0.1)); padding: 50px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.05); }
        .contact-info-side { display: flex; flex-direction: column; justify-content: center; }
        .contact-form-side { background: rgba(3, 7, 18, 0.6); padding: 35px; border-radius: 25px; border: 1px solid rgba(255,255,255,0.05); }
        .form-group { margin-bottom: 20px; }
        .form-group label { display: block; font-size: 13px; font-weight: bold; margin-bottom: 8px; color: var(--text-gray); text-transform: uppercase; }
        .form-control { width: 100%; padding: 14px 20px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; font-size: 15px; }
        .btn-submit { width: 100%; background: var(--primary); color: white; padding: 15px; border: none; border-radius: 50px; font-weight: bold; font-size: 15px; cursor: pointer; }

        footer { background-color: var(--footer-bg); padding: 70px 6% 30px 6%; border-top: 1px solid rgba(255, 255, 255, 0.05); }
        .footer-main { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr; gap: 40px; max-width: 1200px; margin: 0 auto 50px auto; }
        .footer-brand { display: flex; flex-direction: column; gap: 15px; }
        .footer-brand img { max-width: 180px; height: auto; display: block; }
        .footer-brand p { color: var(--text-gray); font-size: 14px; }
        
        .footer-col h4 { font-size: 16px; font-weight: 700; margin-bottom: 25px; color: #ffffff; position: relative; }
        .footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
        .footer-links a, .footer-links li { color: var(--text-gray); text-decoration: none; font-size: 14px; transition: color 0.3s ease; display: flex; align-items: center; gap: 8px; }
        .footer-links a:hover { color: var(--accent); }
        
        /* Redes Sociales en Footer */
        .footer-socials { display: flex; gap: 15px; align-items: center; padding-top: 4px; }
        .footer-socials a { color: var(--text-gray); font-size: 18px; text-decoration: none; transition: color 0.3s ease, transform 0.3s ease; }
        .footer-socials a:hover { color: var(--accent); transform: translateY(-2px); }

        .footer-bottom { max-width: 1200px; margin: 0 auto; padding-top: 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; font-size: 13px; color: var(--text-gray); }

        /* MULTIMEDIA OPTIMIZATIONS */
        @media (max-width: 992px) {
            nav { padding: 15px 3%; }
            .logo-img { height: 38px; }
            .logo-divider, .logo-tagline { display: none; }
            .nav-links { gap: 12px; margin-right: 15px; }
            .footer-main { grid-template-columns: repeat(2, 1fr); gap: 30px; }
        }

        @media (max-width: 900px) {
            .nav-links { display: none; }
            .web-projects { padding: 0 5% 70px 5%; }
            .web-projects-grid { gap: 30px; }
            .founder-section { padding: 130px 5% 70px 5%; }
            .founder-container { grid-template-columns: 1fr; text-align: center; gap: 30px; }
            .founder-photo-wrap img { max-width: 260px; }
            .founder-bio { margin-left: auto; margin-right: auto; }
            .founder-stat { margin: 0 auto; }
            .hero { padding: 105px 4% 0 4%; height: 100vh; height: 100dvh; display: flex; flex-direction: column; justify-content: flex-start; }
            .hero-container { flex-direction: column; text-align: center; gap: 0px; justify-content: flex-start; flex-grow: 1; position: relative; }
            .hero-content { max-width: 100%; text-align: center; display: flex; flex-direction: column; align-items: center; padding-bottom: 0px; margin-top: 35px; z-index: 2; }
            .hero-content h1 { align-items: center; font-size: clamp(38px, 7vw, 55px); }
            .hero-content h1 .highlight-black { font-size: clamp(110px, 22vw, 170px); margin: 6px 0 2px 0; }
            .hero-content h1 .sub-text { font-size: clamp(35px, 6.5vw, 48px); }
            .hero-image-wrapper { position: absolute; width: 240%; max-width: 850px; bottom: -20px; right: auto; left: 50%; transform: translateX(-54%); z-index: 1; display: flex; justify-content: center; align-items: flex-end; }
            .hero-image-wrapper img { width: 100%; transform: translateY(0px) !important; -webkit-mask-image: none; mask-image: none; }
            .features-bar { display: none !important; }
            .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
            .bento-item.tall { grid-row: span 1; height: 380px; } 
            
            .timeline-progress-bar { left: 27px; top: 10px; bottom: 10px; width: 4px; height: auto; background: var(--yellow-brand); }
            .timeline-container { flex-direction: column; gap: 40px; }
            .timeline-node { flex-direction: row; align-items: flex-start; text-align: left; width: 100%; gap: 20px; }
            .node-number { margin-bottom: 0; flex-shrink: 0; z-index: 3; }
            .node-card { padding: 25px 20px; }
            
            .testi-professional-grid { grid-template-columns: 1fr; gap: 50px; }
            
            .contact-container { grid-template-columns: 1fr; padding: 30px 20px; }
            .footer-main { grid-template-columns: 1fr; text-align: center; justify-items: center; }
            .footer-brand { align-items: center; }
            .footer-socials { justify-content: center; }
            .footer-bottom { justify-content: center; text-align: center; }
            #servicios { padding: 80px 4% 60px 4%; }
            .services-grid { gap: 60px; }
        }