﻿

/* Extracted from contato.html */
:root {
            --primary: #1B2A22;
            --secondary: #2D4A3A;
            --accent: #C5A880;
            --neutralLight: #F9F8F6;
            --neutralAlt: #e6ece8;
        }

        body {
            background-color: var(--neutralLight);
            color: var(--primary);
            overflow-x: hidden;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }
        body::-webkit-scrollbar { display: none; }

        .glass-panel {
            background: rgba(255, 255, 255, 0.65);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
        }

        .reveal-scroll {
            opacity: 0;
            transform: translateY(40px);
            filter: blur(10px);
            will-change: transform, opacity, filter;
        }

        .reveal-up {
            opacity: 0;
            transform: translateY(30px);
            filter: blur(15px);
            will-change: transform, opacity, filter;
            transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .reveal-up.active {
            opacity: 1;
            transform: translateY(0);
            filter: blur(0);
        }
        .delay-100 { transition-delay: 100ms; }
        .delay-200 { transition-delay: 200ms; }
        .delay-300 { transition-delay: 300ms; }
        .delay-400 { transition-delay: 400ms; }
        .delay-500 { transition-delay: 500ms; }

        /* Hero overlay */
        .hero-overlay-multi {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to bottom, rgba(27,42,34,0.60) 0%, rgba(27,42,34,0.15) 45%, rgba(27,42,34,0.0) 65%),
                linear-gradient(to top, var(--neutralLight) 0%, transparent 28%);
        }

        /* Shimmer */
        @keyframes shimmer {
            from { transform: translateX(-100%) skewX(-15deg); }
            to   { transform: translateX(200%) skewX(-15deg); }
        }

        /* ── Form Styles ── */
        .form-card {
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(24px);
            border: 1px solid rgba(197, 168, 128, 0.2);
            border-radius: 2rem;
            box-shadow: 0 24px 80px rgba(27, 42, 34, 0.08), 0 0 0 1px rgba(255,255,255,0.6) inset;
            transition: box-shadow 0.5s ease;
        }
        .form-card:hover {
            box-shadow: 0 32px 100px rgba(27, 42, 34, 0.12), 0 0 0 1px rgba(255,255,255,0.6) inset;
        }

        .form-label {
            display: block;
            font-family: 'Outfit', sans-serif;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            color: var(--secondary);
            margin-bottom: 0.55rem;
            transition: color 0.3s;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            font-family: 'Outfit', sans-serif;
            font-size: 0.95rem;
            font-weight: 300;
            color: var(--primary);
            background: rgba(255, 255, 255, 0.8);
            border: 1.5px solid rgba(27, 42, 34, 0.12);
            border-radius: 0.85rem;
            padding: 0.85rem 1.1rem;
            outline: none;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            appearance: none;
            -webkit-appearance: none;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: rgba(27, 42, 34, 0.35);
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--accent);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
        }

        .form-group:focus-within .form-label {
            color: var(--accent);
        }

        /* Custom select arrow */
        .select-wrapper {
            position: relative;
        }
        .select-wrapper::after {
            content: '';
            position: absolute;
            right: 1.1rem;
            top: 50%;
            transform: translateY(-50%);
            width: 0; height: 0;
            border-left: 5px solid transparent;
            border-right: 5px solid transparent;
            border-top: 6px solid var(--secondary);
            pointer-events: none;
            transition: border-top-color 0.3s;
        }
        .select-wrapper:focus-within::after {
            border-top-color: var(--accent);
        }
        .form-select { padding-right: 2.5rem; cursor: pointer; }

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

        /* Floating particles */
        .particle {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            animation: floatParticle linear infinite;
        }
        @keyframes floatParticle {
            0%   { transform: translateY(100vh) scale(0); opacity: 0; }
            10%  { opacity: 0.6; }
            90%  { opacity: 0.3; }
            100% { transform: translateY(-10vh) scale(1.2); opacity: 0; }
        }

        /* Shimmer button */
        @keyframes spin { to { transform: rotate(360deg); } }

@media (min-width: 1024px) { #cta-yellow-bg { left: 0; width: 100vw; clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%); margin-left: -15px; } }
                    @media (max-width: 1023px) { #cta-yellow-bg { left: 50%; transform: translateX(-50%); width: 100vw; clip-path: polygon(0 30px, 100% 0, 100% 100%, 0 100%); margin-top: -15px; } }
                

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            animation: pulse-wa 2s infinite cubic-bezier(0.66, 0, 0, 1);
        }

        .whatsapp-float:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
            background-color: #20BA56;
        }

        .whatsapp-float svg {
            width: 32px;
            height: 32px;
            fill: currentColor;
        }
        
        @keyframes pulse-wa {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }
        
        @media (max-width: 768px) {
            .whatsapp-float {
                bottom: 1.5rem;
                right: 1.5rem;
                width: 50px;
                height: 50px;
            }
            .whatsapp-float svg {
                width: 28px;
                height: 28px;
            }
        }
