        :root {
            --primary: #D90429;
            --primary-dark: #B80A24;
            --primary-light: #FF2E4D;
            --secondary: #0F172A;
            --secondary-light: #334155;
            --accent: #00A8E8;
            --accent-green: #25D366;
            --accent-blue: #0077B5;
            --light: #FFFFFF;
            --dark: #020617;
            --gray-50: #F8FAFC;
            --gray-100: #F1F5F9;
            --gray-200: #E2E8F0;
            --gray-300: #CBD5E1;
            --gray-400: #94A3B8;
            --gray-500: #64748B;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1E293B;
            --gray-900: #0F172A;
            --institutional-gray: #94A3B8;
            
            --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-dark: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, #0095D4 100%);
            --gradient-green: linear-gradient(135deg, var(--accent-green) 0%, #1DA851 100%);
            --gradient-gray: linear-gradient(135deg, var(--institutional-gray) 0%, #64748B 100%);
            
            --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
            --shadow-md: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-lg: 0 20px 40px rgba(0,0,0,0.15);
            --shadow-xl: 0 30px 60px rgba(0,0,0,0.2);
            --shadow-primary: 0 10px 30px rgba(217, 4, 41, 0.25);
            
            --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 16px;
            --border-radius-xl: 24px;
            --border-radius-2xl: 32px;
            
            --glass-bg: rgba(255, 255, 255, 0.95);
            --glass-border: rgba(255, 255, 255, 0.2);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            color: var(--gray-900);
            line-height: 1.6;
            background-color: var(--light);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 800;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-padding {
            padding: 120px 0;
        }

        .section-padding-sm {
            padding: 80px 0;
        }

        /* MODAL EM FORMATO CELULAR - APENAS VÍDEO */
        .video-modal-mobile-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition-slow);
            background: rgba(0, 0, 0, 0.92);
            backdrop-filter: blur(10px);
        }

        .video-modal-mobile-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .smartphone-modal-container {
            width: 320px;
            height: 640px;
            border-radius: 36px;
            background: #1a1a1a;
            box-shadow: 
                0 40px 80px rgba(0, 0, 0, 0.8),
                inset 0 0 0 3px rgba(255, 255, 255, 0.1),
                inset 0 0 60px rgba(0, 0, 0, 0.8);
            overflow: hidden;
            position: relative;
            transform: scale(0.9) translateY(50px);
            opacity: 0;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border: 4px solid var(--primary); /* BORDA VERMELHA ADICIONADA */
        }

        .smartphone-modal-container.active {
            transform: scale(1) translateY(0);
            opacity: 1;
        }

        .smartphone-modal-frame {
            position: absolute;
            top: 8px;
            left: 8px;
            right: 8px;
            bottom: 8px;
            border-radius: 28px;
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            overflow: hidden;
            box-shadow: 
                inset 0 0 20px rgba(0, 0, 0, 0.8),
                0 0 0 1px rgba(255, 255, 255, 0.05);
        }

        .smartphone-modal-screen {
            position: absolute;
            top: 12px;
            left: 12px;
            right: 12px;
            bottom: 12px;
            border-radius: 22px;
            overflow: hidden;
            background: #000;
            display: flex;
            flex-direction: column;
        }

        .modal-phone-notch {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 180px;
            height: 24px;
            background: #1a1a1a;
            border-bottom-left-radius: 18px;
            border-bottom-right-radius: 18px;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-top: 4px;
        }

        .modal-notch-camera {
            width: 10px;
            height: 10px;
            background: #333;
            border-radius: 50%;
            margin-right: 8px;
        }

        .modal-notch-speaker {
            width: 60px;
            height: 6px;
            background: #333;
            border-radius: 3px;
        }

        .modal-phone-button {
            position: absolute;
            right: -6px;
            top: 120px;
            width: 5px;
            height: 40px;
            background: linear-gradient(to bottom, #333, #555, #333);
            border-radius: 3px;
            box-shadow: 2px 0 6px rgba(0,0,0,0.6);
        }

        .modal-close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-base);
            z-index: 100;
        }

        .modal-close-button:hover {
            background: var(--primary);
            transform: rotate(90deg) scale(1.1);
        }

        .modal-video-container {
            flex: 1;
            position: relative;
            overflow: hidden;
            background: #000;
        }

        #modalVideo {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .modal-video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.8) 100%);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding: 30px;
            opacity: 1;
            transition: opacity 0.4s ease;
            z-index: 2;
            pointer-events: none;
        }

        .modal-video-overlay.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .modal-video-container:hover .modal-video-overlay {
            opacity: 1;
            pointer-events: auto;
        }

        .modal-video-overlay h4 {
            font-size: 1.5rem;
            margin-bottom: 12px;
            font-weight: 700;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.4s ease 0.1s;
        }

        .modal-video-overlay p {
            font-size: 1rem;
            opacity: 0;
            max-width: 90%;
            line-height: 1.4;
            transform: translateY(20px);
            transition: all 0.4s ease 0.2s;
        }

        .modal-video-overlay:not(.hidden) h4,
        .modal-video-overlay:not(.hidden) p {
            opacity: 0.9;
            transform: translateY(0);
        }

        /* Botão de Áudio Discreto */
        .modal-audio-button {
            position: absolute;
            bottom: 15px;
            left: 15px;
            width: 36px;
            height: 36px;
            background: rgba(217, 4, 41, 0.15);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 0.9rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition-base);
            z-index: 3;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .modal-audio-button:hover {
            background: rgba(217, 4, 41, 0.3);
            transform: scale(1.1);
        }

        .modal-audio-button.muted {
            opacity: 0.7;
        }

        .modal-audio-button.muted i {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Botão de Play Modificado - Apenas Vermelho */
        .modal-play-button {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 20px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 
                0 15px 35px rgba(217, 4, 41, 0.5),
                inset 0 0 0 2px rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            color: white;
            z-index: 2;
            pointer-events: auto;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .modal-video-overlay:not(.hidden) .modal-play-button {
            opacity: 1;
            transform: scale(1);
        }

        .modal-play-button::before {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            border-radius: 50%;
            z-index: 1;
            animation: rotate 20s linear infinite;
        }

        .modal-play-button i {
            position: relative;
            z-index: 2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: var(--transition-base);
        }

        .modal-play-button:hover {
            transform: scale(1.15);
            box-shadow: 
                0 20px 50px rgba(217, 4, 41, 0.7),
                inset 0 0 0 2px rgba(255, 255, 255, 0.2);
        }

        .modal-play-button:hover i {
            transform: scale(1.2);
        }

        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 18px 40px;
            border-radius: var(--border-radius-md);
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition-base);
            border: none;
            text-decoration: none;
            gap: 12px;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.01em;
            text-transform: uppercase;
            font-weight: 800;
            white-space: nowrap;
        }

        .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: var(--transition-slow);
        }

        .btn:hover::after {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: white;
            box-shadow: var(--shadow-primary);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: var(--gradient-gray);
            color: white;
            border: none;
            box-shadow: var(--shadow-md);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-accent {
            background: var(--gradient-accent);
            color: white;
            box-shadow: var(--shadow-md);
        }

        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--secondary);
            border: 2px solid var(--gray-300);
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: var(--glass-bg);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px) saturate(180%);
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition-base);
            padding: 16px 0;
        }

        .header-scrolled {
            padding: 12px 0;
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.98);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 16px;
            text-decoration: none;
        }

        .logo-icon-img {
            width: 56px;
            height: 56px;
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-primary);
        }

        .logo-icon-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            padding: 8px;
        }

        .logo-text-img {
            height: 40px;
            display: flex;
            align-items: center;
        }

        .logo-text-img img {
            height: 750%;
            width: auto;
            max-width: 600px;
            object-fit: contain;
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        .nav-menu {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .nav-link {
            font-weight: 600;
            color: var(--gray-700);
            position: relative;
            padding: 8px 0;
            text-decoration: none;
            transition: var(--transition-fast);
            font-size: 1rem;
            white-space: nowrap;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: var(--transition-base);
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link.active {
            color: var(--primary);
        }

        .nav-link.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .header-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: var(--gradient-primary);
            color: white;
            border-radius: var(--border-radius-md);
            text-decoration: none;
            font-weight: 700;
            transition: var(--transition-base);
            box-shadow: var(--shadow-primary);
            font-size: 0.95rem;
        }

        .header-cta:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--secondary);
            cursor: pointer;
            width: 44px;
            height: 44px;
            border-radius: var(--border-radius-sm);
            align-items: center;
            justify-content: center;
            transition: var(--transition-fast);
            z-index: 1001;
        }

        .mobile-menu-btn:hover {
            background: var(--gray-100);
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding-top: 100px;
        }

        .hero-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(217, 4, 41, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 168, 232, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(177, 177, 177, 0.05) 0%, transparent 50%);
            z-index: 1;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out 0.2s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-text .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: rgba(217, 4, 41, 0.1);
            color: var(--primary);
            border-radius: 100px;
            font-weight: 700;
            margin-bottom: 32px;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .hero-text h1 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            color: var(--secondary);
            line-height: 1.1;
        }

        .hero-text p {
            font-size: 1.25rem;
            color: var(--gray-600);
            margin-bottom: 40px;
            line-height: 1.7;
            max-width: 90%;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            padding: 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-lg);
        }

        .stat-item {
            text-align: center;
            position: relative;
        }

        .stat-item:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -16px;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 60%;
            background: linear-gradient(180deg, transparent, var(--gray-300), transparent);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 8px;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-600);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .hero-visual {
            position: relative;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(-1deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .hero-image-wrapper {
            border-radius: var(--border-radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            transform: perspective(1200px) rotateY(-10deg) rotateX(3deg);
            transition: var(--transition-slow);
            position: relative;
            width: 100%;
            height: auto;
            background-color: #f8fafc;
        }

        .hero-image-wrapper:hover {
            transform: perspective(1200px) rotateY(0) rotateX(0);
        }

        .hero-image-wrapper img {
            width: 100%;
            height: auto;
            max-height: 550px;
            display: block;
            transition: var(--transition-slow);
            object-fit: cover;
            object-position: center;
        }

        .hero-image-wrapper:hover img {
            transform: scale(1.05);
        }

        @media (min-width: 1200px) {
            .hero-image-wrapper img {
                object-position: center 25%;
            }
        }

        .floating-badge {
            position: absolute;
            bottom: 20px;
            right: -20px;
            background: var(--gradient-dark);
            color: white;
            padding: 20px 24px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            animation: pulse 2s infinite;
            z-index: 10;
            min-width: 140px;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .floating-badge .years {
            font-size: 2rem;
            font-weight: 900;
            line-height: 1;
            display: block;
        }

        .floating-badge .text {
            font-size: 0.85rem;
            opacity: 0.9;
            font-weight: 600;
        }

        .highlights-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .highlights-bahia-style {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            position: relative;
            z-index: 2;
        }

        @media (max-width: 992px) {
            .highlights-bahia-style {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .highlights-bahia-style {
                grid-template-columns: 1fr;
            }
        }

        .highlight-bahia-card {
            background: var(--light);
            border-radius: var(--border-radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-base);
            position: relative;
            border: 1px solid var(--gray-200);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .highlight-bahia-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .highlight-bahia-image {
            height: 200px;
            overflow: hidden;
            position: relative;
        }

        .highlight-bahia-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .highlight-bahia-card:hover .highlight-bahia-image img {
            transform: scale(1.05);
        }

        .highlight-bahia-content {
            padding: 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .highlight-bahia-title {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--secondary);
            line-height: 1.3;
        }

        .highlight-bahia-description {
            color: var(--gray-600);
            margin-bottom: 24px;
            line-height: 1.7;
            flex: 1;
        }

        .highlight-bahia-tag {
            display: inline-block;
            padding: 10px 24px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 100px;
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition-base);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .obra-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            color: white;
            padding: 100px 0;
        }

        .obra-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .obra-content {
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .obra-visual {
            animation: slideInRight 1s ease-out 0.5s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .obra-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 24px;
            background: rgba(217, 4, 41, 0.2);
            color: #FF2E4D;
            border-radius: 100px;
            font-weight: 700;
            margin-bottom: 32px;
            font-size: 0.95rem;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            border: 1px solid rgba(217, 4, 41, 0.3);
        }

        .obra-title {
            font-size: 3rem;
            margin-bottom: 24px;
            line-height: 1.1;
            background: linear-gradient(90deg, #FFFFFF 0%, #FF2E4D 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .obra-description {
            font-size: 1.25rem;
            margin-bottom: 40px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        .obra-features {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .obra-feature {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition-base);
        }

        .obra-feature:hover {
            background: rgba(217, 4, 41, 0.1);
            border-color: rgba(217, 4, 41, 0.3);
            transform: translateY(-3px);
        }

        .obra-feature-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .obra-feature-text {
            font-weight: 600;
            font-size: 1rem;
        }

        .obra-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: var(--gradient-primary);
            color: white;
            border-radius: var(--border-radius-md);
            text-decoration: none;
            font-weight: 800;
            transition: var(--transition-base);
            box-shadow: 0 15px 35px rgba(217, 4, 41, 0.3);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            animation: pulse 2s infinite;
        }

        .obra-cta:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 50px rgba(217, 4, 41, 0.4);
        }

        .obra-image-wrapper {
            border-radius: var(--border-radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
            transform: perspective(1200px) rotateY(10deg) rotateX(3deg);
            transition: var(--transition-slow);
        }

        .obra-image-wrapper:hover {
            transform: perspective(1200px) rotateY(0) rotateX(0);
        }

        .obra-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: var(--transition-slow);
        }

        .obra-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .obra-saving-badge {
            position: absolute;
            bottom: 40px;
            left: -20px;
            background: var(--gradient-primary);
            color: white;
            padding: 24px 28px;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-xl);
            animation: float 3s ease-in-out infinite;
            z-index: 10;
            min-width: 160px;
            text-align: center;
        }

        .obra-saving-badge .percent {
            font-size: 2.5rem;
            font-weight: 900;
            line-height: 1;
            display: block;
        }

        .obra-saving-badge .text {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .journey-history-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            padding: 140px 0;
        }

        .journey-history-container {
            position: relative;
        }

        .section-header-center {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
        }

        .section-header-center h2 {
            font-size: 3.5rem;
            margin-bottom: 24px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .section-header-center h2::after {
            content: '';
            position: absolute;
            bottom: -16px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: var(--gradient-primary);
            border-radius: 3px;
        }

        .section-header-center p {
            font-size: 1.3rem;
            color: var(--gray-600);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .journey-history-content {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            margin-bottom: 100px;
        }

        .history-intro {
            position: relative;
        }

        .history-intro h3 {
            font-size: 2.8rem;
            margin-bottom: 32px;
            color: var(--secondary);
            line-height: 1.1;
        }

        .history-intro h3 span {
            position: relative;
        }

        .history-intro h3 span::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        }

        .history-intro p {
            font-size: 1.15rem;
            color: var(--gray-600);
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .history-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            margin-top: 48px;
            padding: 32px;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            border-radius: var(--border-radius-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-lg);
        }

        .history-stat-item {
            text-align: center;
        }

        .history-stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1;
            display: block;
        }

        .history-stat-label {
            font-size: 1rem;
            color: var(--gray-700);
            font-weight: 600;
            line-height: 1.4;
        }

        .history-visual {
            position: relative;
        }

        .history-image-wrapper {
            border-radius: var(--border-radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            position: relative;
        }

        .history-image-wrapper img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
            transition: var(--transition-slow);
        }

        .history-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .history-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            background: var(--gradient-dark);
            color: white;
            width: 160px;
            height: 160px;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-xl);
            z-index: 2;
            animation: float 6s ease-in-out infinite;
        }

        .history-badge .years {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1;
        }

        .history-badge .text {
            font-size: 0.9rem;
            font-weight: 600;
            text-align: center;
            line-height: 1.3;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-top: 8px;
        }

        .journey-timeline {
            position: relative;
            padding: 60px 0;
        }

        .timeline-premium {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-premium::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            background: var(--gradient-primary);
            border-radius: 3px;
            z-index: 1;
        }

        .timeline-item-premium {
            position: relative;
            width: 50%;
            padding: 0 40px 80px;
            box-sizing: border-box;
        }

        .timeline-item-premium:nth-child(odd) {
            left: 0;
            padding-right: 60px;
        }

        .timeline-item-premium:nth-child(even) {
            left: 50%;
            padding-left: 60px;
        }

        .timeline-content-premium {
            background: var(--light);
            padding: 40px;
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-lg);
            position: relative;
            transition: var(--transition-base);
            border: 1px solid var(--gray-200);
            overflow: hidden;
            z-index: 2;
        }

        .timeline-content-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: var(--gradient-primary);
        }

        .timeline-content-premium:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .timeline-year-premium {
            position: absolute;
            top: 40px;
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 900;
            font-size: 2rem;
            box-shadow: var(--shadow-xl);
            z-index: 3;
            border: 4px solid var(--light);
        }

        .timeline-item-premium:nth-child(odd) .timeline-year-premium {
            background: var(--gradient-primary);
            right: -130px;
        }

        .timeline-item-premium:nth-child(even) .timeline-year-premium {
            background: var(--gradient-dark);
            left: -130px;
        }

        .timeline-icon-premium {
            width: 70px;
            height: 70px;
            background: var(--gradient-primary);
            border-radius: var(--border-radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            margin-bottom: 24px;
            transition: var(--transition-base);
        }

        .timeline-content-premium:hover .timeline-icon-premium {
            transform: scale(1.1) rotate(5deg);
        }

        .timeline-title-premium {
            font-size: 1.8rem;
            margin-bottom: 16px;
            color: var(--secondary);
        }

        .timeline-description-premium {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .timeline-milestone-premium {
            display: inline-block;
            padding: 10px 20px;
            background: rgba(217, 4, 41, 0.1);
            color: var(--primary);
            border-radius: 100px;
            font-weight: 800;
            font-size: 0.9rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .journey-values {
            padding: 80px 0 40px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }

        @media (max-width: 992px) {
            .values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 576px) {
            .values-grid {
                grid-template-columns: 1fr;
            }
        }

        .value-card {
            background: var(--light);
            border-radius: var(--border-radius-xl);
            padding: 40px 32px;
            text-align: center;
            box-shadow: var(--shadow-md);
            transition: var(--transition-base);
            border: 1px solid var(--gray-200);
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            margin: 0 auto 24px;
            transition: var(--transition-base);
        }

        .value-card:hover .value-icon {
            transform: scale(1.1) rotate(10deg);
        }

        .value-title {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--secondary);
        }

        .value-description {
            color: var(--gray-600);
            line-height: 1.6;
            font-size: 0.95rem;
        }

        .products-section {
            position: relative;
            overflow: hidden;
            background: var(--gray-50);
        }

        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 60px;
            flex-wrap: wrap;
            gap: 30px;
        }

        .products-filter {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 14px 28px;
            background: var(--light);
            border: 2px solid var(--gray-200);
            border-radius: var(--border-radius-md);
            font-weight: 700;
            color: var(--gray-700);
            cursor: pointer;
            transition: var(--transition-base);
            font-size: 0.95rem;
            white-space: nowrap;
        }

        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .filter-btn.active {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent;
            box-shadow: var(--shadow-primary);
        }

        .products-grid-modern {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
            margin-bottom: 80px;
        }

        .product-card-modern {
            background: var(--light);
            border-radius: var(--border-radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition-slow);
            border: 1px solid var(--gray-200);
            display: flex;
            flex-direction: column;
            height: 100%;
            position: relative;
        }

        .product-card-modern:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
            border-color: var(--primary-light);
        }

        .product-card-modern::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 2;
        }

        .product-card-modern:hover::before {
            transform: scaleX(1);
        }

        .product-image-modern {
            height: 240px;
            overflow: hidden;
            position: relative;
            background: var(--gray-100);
        }

        .product-image-modern img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition-slow);
        }

        .product-card-modern:hover .product-image-modern img {
            transform: scale(1.1);
        }

        .product-content-modern {
            padding: 32px;
            flex: 1;
            display: flex;
            flex-direction: column;
            position: relative;
            background: var(--light);
        }

        .product-category-modern {
            display: inline-block;
            padding: 8px 16px;
            background: rgba(217, 4, 41, 0.1);
            color: var(--primary);
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            margin-bottom: 16px;
            align-self: flex-start;
        }

        .product-title-modern {
            font-size: 1.5rem;
            margin-bottom: 16px;
            color: var(--secondary);
            line-height: 1.3;
            flex: 1;
        }

        .product-description-modern {
            color: var(--gray-600);
            margin-bottom: 24px;
            line-height: 1.6;
            font-size: 0.95rem;
            flex: 1;
        }

        .product-actions-modern {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: auto;
        }

        .product-actions-modern .btn {
            width: 100%;
            padding: 16px 20px;
            font-size: 0.9rem;
            font-weight: 700;
            justify-content: center;
            white-space: normal;
            text-align: center;
            line-height: 1.3;
        }

        .btn-compact {
            padding: 14px 20px !important;
            font-size: 0.85rem !important;
        }

        .products-showcase {
            margin-top: 80px;
            background: var(--gradient-primary);
            border-radius: var(--border-radius-xl);
            padding: 60px;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .products-showcase::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }

        .showcase-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .showcase-content h3 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }

        .showcase-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
            line-height: 1.7;
        }

        .locations-section {
            position: relative;
            overflow: hidden;
        }

        .locations-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .location-info {
            background: var(--light);
            border-radius: var(--border-radius-xl);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--gray-200);
            transition: var(--transition-base);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .location-info:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .location-map-container {
            height: 250px;
            position: relative;
            overflow: hidden;
        }

        .location-map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            filter: grayscale(20%);
            transition: var(--transition-base);
        }

        .location-info:hover .location-map-container iframe {
            filter: grayscale(0%);
        }

        .location-content {
            padding: 40px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .location-header {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 32px;
        }

        .location-icon {
            width: 56px;
            height: 56px;
            background: var(--gradient-primary);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }

        .location-title {
            font-size: 1.5rem;
            color: var(--secondary);
        }

        .location-details {
            display: flex;
            flex-direction: column;
            gap: 24px;
            flex: 1;
        }

        .location-detail {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .location-detail i {
            color: var(--primary);
            font-size: 1.2rem;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .location-detail h4 {
            font-size: 1rem;
            margin-bottom: 4px;
            color: var(--secondary);
        }

        .location-detail p {
            color: var(--gray-600);
            line-height: 1.6;
        }

        .location-cta {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-200);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info {
            background: var(--gradient-dark);
            border-radius: var(--border-radius-xl);
            padding: 48px;
            color: white;
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }

        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 32px;
            color: white;
            position: relative;
            z-index: 2;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 28px;
            position: relative;
            z-index: 2;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            transition: var(--transition-base);
        }

        .contact-item:hover .contact-icon {
            background: var(--primary);
            transform: scale(1.1);
        }

        .contact-details h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: white;
        }

        .contact-details p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 16px;
            margin-top: 40px;
            position: relative;
            z-index: 2;
        }

        .social-link {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition-base);
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .contact-form {
            background: var(--light);
            border-radius: var(--border-radius-xl);
            padding: 48px;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
        }

        .form-header {
            margin-bottom: 32px;
        }

        .form-header h3 {
            font-size: 2rem;
            margin-bottom: 12px;
            color: var(--secondary);
        }

        .form-header p {
            color: var(--gray-600);
            font-size: 1.1rem;
        }

        .form-group {
            margin-bottom: 24px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--secondary);
            font-size: 0.95rem;
        }

        .form-control {
            width: 100%;
            padding: 16px 20px;
            border: 2px solid var(--gray-300);
            border-radius: var(--border-radius-md);
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            transition: var(--transition-base);
            background: var(--light);
            color: var(--dark);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(217, 4, 41, 0.1);
        }

        .form-control.error {
            border-color: #ff3860;
        }

        .form-control.success {
            border-color: #23d160;
        }

        .error-message {
            color: #ff3860;
            font-size: 0.85rem;
            margin-top: 6px;
            display: none;
        }

        textarea.form-control {
            min-height: 140px;
            resize: vertical;
        }

        .form-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid var(--gray-200);
            flex-wrap: wrap;
            gap: 20px;
        }

        .whatsapp-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 14px 24px;
            background: #25D366;
            color: white;
            border-radius: var(--border-radius-md);
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition-base);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
        }

        .whatsapp-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
        }

        footer {
            background: var(--secondary);
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--gradient-primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .footer-col h4 {
            font-size: 1.2rem;
            margin-bottom: 24px;
            color: white;
            position: relative;
            display: inline-block;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 32px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition-fast);
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-links a i {
            width: 16px;
            text-align: center;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .footer-contact p {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
        }

        .footer-contact i {
            color: var(--primary);
            width: 16px;
            font-size: 0.9rem;
        }

        .footer-newsletter {
            background: rgba(255, 255, 255, 0.05);
            padding: 24px;
            border-radius: var(--border-radius-lg);
            margin-top: 24px;
        }

        .footer-newsletter p {
            margin-bottom: 16px;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border: none;
            border-radius: var(--border-radius-sm);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            font-family: 'Inter', sans-serif;
            font-size: 0.9rem;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form button {
            padding: 12px 20px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: var(--border-radius-sm);
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition-fast);
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .newsletter-form button:hover {
            background: var(--primary-light);
        }

        .footer-bottom {
            padding-top: 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        .footer-bottom p {
            margin-bottom: 8px;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .back-to-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 99;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: var(--transition-base);
            box-shadow: var(--shadow-primary);
            border: none;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(217, 4, 41, 0.3);
        }

        .spinner {
            display: inline-block;
            width: 20px;
            height: 20px;
            border: 3px solid rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            border-top-color: white;
            animation: spin 1s ease-in-out infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @media (max-width: 1200px) {
            .container {
                padding: 0 32px;
            }
            
            .hero-text h1 {
                font-size: 3rem;
            }
            
            .section-header-center h2 {
                font-size: 3rem;
            }
            
            .timeline-premium::before {
                left: 32px;
            }
            
            .timeline-item-premium {
                width: 100%;
                padding-left: 100px;
                padding-right: 0;
            }
            
            .timeline-item-premium:nth-child(odd),
            .timeline-item-premium:nth-child(even) {
                left: 0;
                padding-right: 0;
                padding-left: 100px;
            }
            
            .timeline-item-premium:nth-child(odd) .timeline-year-premium,
            .timeline-item-premium:nth-child(even) .timeline-year-premium {
                left: 0;
                right: auto;
            }
            
            .journey-history-content {
                gap: 60px;
            }
            
            .history-intro h3 {
                font-size: 2.5rem;
            }
            
            .products-grid-modern {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
            
            .smartphone-modal-container {
                width: 300px;
                height: 600px;
            }
        }

        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .hero-visual {
                max-width: 600px;
                margin: 0 auto;
            }
            
            .journey-history-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .contact-container, .locations-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .obra-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            
            .obra-title {
                font-size: 2.2rem;
            }
            
            .products-grid-modern {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 40px 32px;
                transition: var(--transition-base);
                z-index: 999;
                gap: 0;
                box-shadow: var(--shadow-lg);
            }
            
            .nav-menu.active {
                left: 0;
            }
            
            .nav-link {
                width: 100%;
                padding: 16px 0;
                font-size: 1.1rem;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .header-actions .header-cta {
                display: none;
            }
            
            .logo-text-img {
                height: 35px;
            }
            
            .logo-icon-img {
                width: 48px;
                height: 48px;
            }
            
            .smartphone-modal-container {
                width: 280px;
                height: 560px;
            }
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 80px 0;
            }
            
            .section-padding-sm {
                padding: 60px 0;
            }
            
            .hero-text h1 {
                font-size: 2.5rem;
            }
            
            .section-header-center h2 {
                font-size: 2.5rem;
            }
            
            .history-intro h3 {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .hero-stats {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 24px;
            }
            
            .stat-item:not(:last-child)::after {
                display: none;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .floating-badge {
                right: 16px;
                bottom: 16px;
                padding: 16px 20px;
            }
            
            .floating-badge .years {
                font-size: 1.5rem;
            }
            
            .contact-info,
            .contact-form {
                padding: 32px 24px;
            }
            
            .form-footer {
                flex-direction: column;
                gap: 20px;
                align-items: stretch;
            }
            
            .whatsapp-link {
                justify-content: center;
            }
            
            .footer-grid {
                gap: 40px;
            }
            
            .location-content {
                padding: 32px 24px;
            }
            
            .location-title {
                font-size: 1.3rem;
            }
            
            .products-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .products-filter {
                width: 100%;
                justify-content: center;
            }
            
            .obra-features {
                grid-template-columns: 1fr;
            }
            
            .obra-title {
                font-size: 2rem;
            }
            
            .obra-saving-badge {
                left: 16px;
                bottom: 16px;
                padding: 20px 24px;
            }
            
            .obra-saving-badge .percent {
                font-size: 2rem;
            }
            
            .timeline-item-premium {
                padding-left: 80px;
            }
            
            .timeline-year-premium {
                width: 80px;
                height: 80px;
                font-size: 1.5rem;
            }
            
            .history-badge {
                right: 20px;
                bottom: -20px;
                width: 120px;
                height: 120px;
            }
            
            .history-badge .years {
                font-size: 2.2rem;
            }
            
            .products-grid-modern {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .products-showcase {
                padding: 40px 24px;
            }
            
            .showcase-content h3 {
                font-size: 2rem;
            }
            
            .logo-text-img {
                height: 30px;
            }
            
            .logo-icon-img {
                width: 44px;
                height: 44px;
            }
            
            .smartphone-modal-container {
                width: 260px;
                height: 520px;
            }
        }

        @media (max-width: 576px) {
            .container {
                padding: 0 20px;
            }
            
            .hero-text h1 {
                font-size: 2rem;
            }
            
            .hero-text p {
                font-size: 1.1rem;
            }
            
            .section-header-center h2 {
                font-size: 2rem;
            }
            
            .section-header-center p {
                font-size: 1.1rem;
            }
            
            .history-intro h3 {
                font-size: 1.8rem;
            }
            
            .history-stat-number {
                font-size: 2.2rem;
            }
            
            .stat-number {
                font-size: 1.8rem;
            }
            
            .header-container {
                padding: 8px 0;
            }
            
            .highlight-bahia-card {
                padding: 32px 24px;
            }
            
            .highlight-bahia-title {
                font-size: 1.3rem;
            }
            
            .obra-title {
                font-size: 1.8rem;
            }
            
            .obra-description {
                font-size: 1.1rem;
            }
            
            .obra-cta {
                padding: 16px 32px;
                font-size: 1rem;
                width: 100%;
                justify-content: center;
            }
            
            .journey-history-section {
                padding: 80px 0;
            }
            
            .section-header-center {
                margin-bottom: 60px;
            }
            
            .timeline-premium::before {
                left: 20px;
            }
            
            .timeline-item-premium {
                padding-left: 60px;
            }
            
            .timeline-year-premium {
                width: 60px;
                height: 60px;
                font-size: 1.2rem;
            }
            
            .timeline-content-premium {
                padding: 28px 24px;
            }
            
            .product-title-modern {
                font-size: 1.3rem;
            }
            
            .product-content-modern {
                padding: 24px;
            }
            
            .products-showcase {
                padding: 32px 20px;
            }
            
            .showcase-content h3 {
                font-size: 1.8rem;
            }
            
            .showcase-content p {
                font-size: 1.1rem;
            }
            
            .logo-text-img {
                height: 28px;
            }
            
            .logo-icon-img {
                width: 40px;
                height: 40px;
            }
            
            .smartphone-modal-container {
                width: 240px;
                height: 480px;
                border-radius: 30px;
            }
            
            .modal-phone-notch {
                width: 140px;
                height: 20px;
            }
            
            .modal-audio-button {
                bottom: 10px;
                left: 10px;
                width: 32px;
                height: 32px;
                font-size: 0.8rem;
            }
            
            .modal-play-button {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }

        @media (max-width: 400px) {
            .smartphone-modal-container {
                width: 220px;
                height: 440px;
                border-radius: 26px;
            }
            
            .smartphone-modal-frame {
                top: 6px;
                left: 6px;
                right: 6px;
                bottom: 6px;
                border-radius: 24px;
            }
            
            .smartphone-modal-screen {
                top: 10px;
                left: 10px;
                right: 10px;
                bottom: 10px;
                border-radius: 20px;
            }
            
            .modal-audio-button {
                bottom: 8px;
                left: 8px;
                width: 30px;
                height: 30px;
            }
            
            .modal-play-button {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }
        }
