        /* Reset Básico Local */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Lato', sans-serif;
            background-color: #FAF7F2;
            color: #2D2D2D;
            line-height: 1.6;
            overflow-x: hidden;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* --- 1. HERO SAC (VISUAL BICOLOR) --- */
        .contact-hero {
            padding-top: 100px;
            padding-bottom: 120px;
            text-align: center;
            background-color: #8B1E22;
            color: white;
            position: relative;
            margin-bottom: 100px;
        }

        .contact-hero h1 {
            font-family: 'Roboto Slab', serif;
            font-size: 3rem;
            color: white;
            margin-bottom: 60px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .cards-wrapper {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 40px;
            margin-bottom: -200px;
            position: relative;
            z-index: 10;
        }

        .contact-card {
            flex: 1;
            min-width: 300px;
            max-width: 400px;
            padding: 50px 40px;
            border-radius: 16px;
            background-color: white;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
            transition: all 0.3s;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
        }

        .card-icon {
            font-size: 3.5rem;
            color: #C69C3A;
            margin-bottom: 20px;
        }

        .contact-card h3 {
            font-family: 'Roboto Slab', serif;
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #8B1E22;
        }

        .contact-card p {
            color: #666;
            margin-bottom: 30px;
            font-size: 1rem;
            line-height: 1.5;
        }

        .btn-whatsapp {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: #25D366;
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
        }

        .btn-whatsapp:hover {
            background-color: #128C7E;
            transform: scale(1.05);
        }

        /* --- 2. FORMULÁRIO --- */
        .form-section {
            padding: 140px 0 80px;
            background-color: #FAF7F2;
        }

        .form-container {
            max-width: 700px;
            margin: 0 auto;
            background: white;
            padding: 50px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .form-container h2 {
            text-align: center;
            font-family: 'Roboto Slab', serif;
            color: #2D2D2D;
            margin-bottom: 10px;
            font-size: 2rem;
        }

        .form-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 40px;
            display: block;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .form-group label {
            display: block;
            font-weight: 700;
            margin-bottom: 8px;
            color: #444;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-family: 'Lato', sans-serif;
            font-size: 1rem;
            transition: 0.3s;
            background-color: #fafafa;
        }

        .form-control:focus {
            outline: none;
            border-color: #C69C3A;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(198, 156, 58, 0.1);
        }

        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }

        .btn-submit {
            width: 100%;
            padding: 15px;
            background-color: #25D366;
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 800;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
            transition: 0.3s;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-submit:hover {
            background-color: #128C7E;
            transform: translateY(-2px);
        }

        .conditional-field {
            display: none;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 900px) {

            /* HERO */
            .contact-hero {
                padding-top: 70px;
                padding-bottom: 40px;
                margin-bottom: 0;
            }

            .contact-hero h1 {
                font-size: 1.9rem;
                line-height: 1.25;
                margin-bottom: 30px;
                padding: 0 16px;
            }

            /* CARDS WHATSAPP */
            .cards-wrapper {
                flex-direction: column;
                align-items: stretch;
                gap: 20px;
                margin-top: 10px;
                margin-bottom: 20px;
            }

            .contact-card {
                min-width: auto;
                max-width: 100%;
                padding: 24px 20px;
                border-radius: 12px;
                box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            }

            .card-icon {
                font-size: 2.4rem;
                margin-bottom: 12px;
            }

            .contact-card h3 {
                font-size: 1.3rem;
                text-align: center;
            }

            .contact-card p {
                font-size: 0.95rem;
                text-align: center;
                margin-bottom: 20px;
            }

            .btn-whatsapp {
                width: 100%;
                justify-content: center;
                padding: 12px 18px;
                font-size: 0.95rem;
            }

            /* FORMULÁRIO */
            .form-section {
                padding-top: 30px;
                padding-bottom: 50px;
            }

            .form-container {
                padding: 24px 18px 30px;
                border-radius: 10px;
                box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            }

            .form-container h2 {
                font-size: 1.6rem;
                margin-bottom: 6px;
            }

            .form-subtitle {
                font-size: 0.95rem;
                margin-bottom: 24px;
                padding: 0 6px;
            }

            .form-group {
                margin-bottom: 16px;
            }

            .form-group label {
                font-size: 0.85rem;
            }

            .form-control {
                font-size: 0.95rem;
                padding: 10px 12px;
            }

            textarea.form-control {
                min-height: 100px;
            }

            .btn-submit {
                font-size: 0.95rem;
                padding: 12px;
                gap: 8px;
            }
        }