        :root {
            --primary: #FE8516;
            --primary-dark: #FF5A00;
            --secondary: #1A1A2E;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-light: #f8fafc;
            --white: #ffffff;
            --border: #e2e8f0;
            --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
            --container: 1200px;
            --radius: 18px;
            --success: #16a34a;
            --info: #2563eb;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }
       /* --- HEADER --- */
        header {
            background-color: rgba(255, 255, 255, 0.96);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            height: 80px;
            display: flex;
            align-items: center;
            position: fixed;
            width: 100%;
            top: 0;
            left: 0;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            width: 100%;
            min-height: 80px;
        }
        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: var(--container);
            margin: 0 auto;
            padding: 0 24px;
        }

        .hero {
            background:
                linear-gradient(135deg, rgba(26, 26, 46, .97), rgba(26, 26, 46, .9)),
                radial-gradient(circle at top right, rgba(254, 133, 22, .18), transparent 35%);
            color: var(--white);
            padding: 88px 0 68px;
        }

        .hero .tag {
            display: inline-block;
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            margin-bottom: 16px;
        }

        .hero h1 {
            font-size: 48px;
            line-height: 1.1;
            margin-bottom: 16px;
            max-width: 760px;
        }

        .hero p {
            font-size: 18px;
            color: rgba(255, 255, 255, .82);
            max-width: 760px;
        }

        .main {
            padding: 60px 0 80px;
        }

        .intro-box {
            background: linear-gradient(180deg, #fff, #fffaf6);
            border: 1px solid var(--border);
            border-left: 5px solid var(--primary);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            padding: 28px;
            margin-bottom: 32px;
        }

        .intro-box h2 {
            font-size: 28px;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .intro-box p {
            color: var(--text-light);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1.15fr .85fr;
            gap: 24px;
            align-items: start;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .card,
        .sidebar-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }

        .card {
            padding: 24px;
            min-height: 210px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .card-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            font-size: 22px;
            font-weight: bold;
            background: rgba(254, 133, 22, .12);
            color: var(--primary-dark);
        }

        .card h3 {
            font-size: 22px;
            color: var(--secondary);
            margin-bottom: 10px;
        }

        .card p {
            color: var(--text-light);
            margin-bottom: 18px;
        }

        .contact-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            color: var(--primary-dark);
            word-break: break-word;
        }

        .contact-link:hover {
            color: var(--primary);
        }

        .card.whatsapp .card-icon {
            background: rgba(22, 163, 74, .12);
            color: var(--success);
        }

        .card.email .card-icon {
            background: rgba(37, 99, 235, .10);
            color: var(--info);
        }

        .sidebar-card {
            padding: 28px;
        }

        .sidebar-card h2 {
            color: var(--secondary);
            font-size: 26px;
            margin-bottom: 16px;
        }

        .sidebar-card p {
            color: var(--text-light);
            margin-bottom: 18px;
        }

        .info-list {
            display: grid;
            gap: 14px;
            margin-top: 18px;
        }

        .info-item {
            border: 1px solid var(--border);
            background: #f9fafb;
            border-radius: 14px;
            padding: 16px 18px;
        }

        .info-item strong {
            display: block;
            color: var(--secondary);
            margin-bottom: 6px;
            font-size: 15px;
        }

        .info-item span {
            color: var(--text-light);
            font-size: 15px;
        }

        .cta-box {
            margin-top: 24px;
            padding: 20px;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(254, 133, 22, .12), rgba(255, 90, 0, .08));
            border: 1px solid rgba(254, 133, 22, .18);
        }

        .cta-box h3 {
            color: var(--secondary);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .cta-box p {
            margin-bottom: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-height: 48px;
            padding: 0 20px;
            border-radius: 12px;
            font-weight: 700;
            transition: .2s ease;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            box-shadow: 0 10px 24px -12px rgba(255, 90, 0, .6);
        }

        .btn-primary:hover {
            transform: translateY(-1px);
            filter: brightness(1.03);
        }

        .section-title {
            margin-top: 36px;
            margin-bottom: 18px;
            font-size: 28px;
            color: var(--secondary);
        }

        .channels-note {
            color: var(--text-light);
            margin-bottom: 22px;
        }

        .footer {
            background: var(--secondary);
            color: rgba(255, 255, 255, .75);
            text-align: center;
            padding: 28px 0;
            font-size: 14px;
        }

        @media (max-width: 980px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 36px;
            }
        }