/*
           REDESIGN PREMIUM - RENDIMENTO
           Fundo Glass + Formulário Branco Clean + Botões Amarelos / Texto Branco + Mapa
        */

        @font-face{
            font-family: 'Lemon Milk';
            src: url('/fontes/lemonmilk-bold.woff2') format('woff2');
            font-weight: bold;
        }

        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-regular.woff2') format('woff2');
            font-weight: 400;
        }

        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-medium.woff2') format('woff2');
            font-weight: 500;
        }

        @font-face{
            font-family: 'Ekster';
            src: url('/fontes/ekster-bold.woff2') format('woff2');
            font-weight: 700;
        }

        #block-contato-page, #block-contato-page *,
#block-contato-page::before, #block-contato-page *::before,
#block-contato-page::after, #block-contato-page *::after{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            outline: none;
        }

        #block-contato-page .r360-contato-wrapper{
            --navy-dark: #121731;
            --navy-light: #1E2756;
            --gold: #D89A14;
            --gold-glow: rgba(216, 154, 20, 0.4);
            --white: #ffffff;
            --glass-bg: rgba(30, 39, 86, 0.4);
            --glass-border: rgba(255, 255, 255, 0.1);
            
            width: 100%;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--navy-dark) 0%, #0d1226 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 100px 50px;
            font-family: 'Ekster', sans-serif;
            position: relative;
            overflow: hidden;
        }

        /* ORB GLOW NO FUNDO */
        #block-contato-page .r360-contato-wrapper::before{
            content: '';
            position: absolute;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0,0,0,0) 70%);
            top: -200px;
            right: -200px;
            filter: blur(120px);
            opacity: 0.6;
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
            animation: contato-page__pulse-glow 8s infinite alternate ease-in-out;
        }

        #block-contato-page .r360-contato-wrapper::after{
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(30, 39, 86, 0.8) 0%, rgba(0,0,0,0) 70%);
            bottom: -150px;
            left: -150px;
            filter: blur(100px);
            opacity: 0.5;
            border-radius: 50%;
            z-index: 0;
            pointer-events: none;
        }

        @keyframes contato-page__pulse-glow{
            0% { transform: scale(0.9) translate(0, 0); opacity: 0.4; }
            100% { transform: scale(1.1) translate(-20px, 20px); opacity: 0.7; }
        }

        /* CARTÃO PRINCIPAL */
        #block-contato-page .glass-panel{
            width: 100%;
            max-width: 1600px;
            border: 1px solid var(--glass-border);
            border-radius: 30px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
            display: grid;
            grid-template-columns: 1fr 1fr;
            z-index: 2;
            overflow: hidden;
            position: relative;
            transform-style: preserve-3d;
            background: var(--glass-bg);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        /* Lado Esquerdo - Info Textual (Glass Transparente) */
        #block-contato-page .info-col{
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            position: relative;
        }

        #block-contato-page .title-group h2{
            font-family: 'Lemon Milk', sans-serif;
            font-size: 42px;
            color: var(--white);
            text-transform: uppercase;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: 1px;
            background: linear-gradient(90deg, #fff, #b3b3b3);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }

        #block-contato-page .title-group p{
            font-size: 20px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
            max-width: 480px;
        }

        #block-contato-page .title-group p strong{ color: var(--gold); font-weight: 700; }

        /* Botões Amarelos Uniformes na Esquerda */
        #block-contato-page .action-badges{
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 45px 0;
            width: 100%;
            max-width: 450px; /* Garante tamanho uniforme */
        }

        #block-contato-page .action-btn{
            display: flex;
            align-items: center;
            justify-content: flex-start;
            background: var(--gold);
            color: var(--white); /* TEXTO BRANCO COMO PEDIDO */
            height: 64px;
            padding: 0 30px;
            border-radius: 12px;
            text-decoration: none;
            font-family: 'Lemon Milk', sans-serif;
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: background 0.4s, color 0.4s, box-shadow 0.6s ease-in-out;
            box-shadow: 0 0 0px rgba(216, 154, 20, 0);
            gap: 20px;
            width: 100%;
            z-index: 1;
        }

        #block-contato-page .action-btn::before{
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: translateX(-100%) skewX(-15deg);
            z-index: -1;
            transition: none;
        }

        #block-contato-page .action-btn:hover{
            background: #f7b11d;
            box-shadow: 0 0 30px rgba(216, 154, 20, 0.7);
            color: var(--white); /* PERMANECE BRANCO NO HOVER */
        }

        #block-contato-page .action-btn:hover::before{
            transform: translateX(100%) skewX(-15deg);
            transition: transform 0.8s ease;
        }

        #block-contato-page .action-btn i{
            display: flex;
            align-items: center;
            justify-content: center;
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1); /* Deixa os ícones brancos para acompanhar o texto */
        }
        
        #block-contato-page .action-btn i img{ width: 100%; height: auto; }

        /* Mapa Orb */
        #block-contato-page .map-orb-container{
            width: 100%;
            max-width: 450px;
            height: 220px;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            margin-top: auto;
            transform: translateZ(40px); /* Extrusão p/ frente no Tilt */
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        #block-contato-page .map-orb-container iframe{
            width: 100%;
            height: 100%;
            border: 0;
            filter: saturate(1.2) contrast(1.1) brightness(0.9);
            transition: filter 0.5s ease;
        }

        #block-contato-page .map-orb-container:hover iframe{
            filter: saturate(1.4) contrast(1.2) brightness(1.1);
        }

        #block-contato-page .map-overlay{
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to top, rgba(18, 23, 49, 0.9), transparent);
            padding: 30px 20px 15px;
            color: #fff;
            pointer-events: none;
            font-family: 'Ekster', sans-serif;
            font-size: 13px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: flex-end;
            gap: 10px;
        }

        #block-contato-page .map-overlay::before{
            content: '';
            width: 8px;
            height: 8px;
            background: var(--gold);
            border-radius: 50%;
            margin-bottom: 4px;
            box-shadow: 0 0 10px var(--gold);
        }


        /* Lado Direito - Formulário Branco Clean */
        #block-contato-page .form-col{
            padding: 80px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: #ffffff; /* Fundo branco fixo para o formulário */
            position: relative;
            z-index: 2;
        }

        #block-contato-page .form-grid{
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px 20px;
            margin-bottom: 30px;
        }

        #block-contato-page .input-group{
            position: relative;
            width: 100%;
        }

        #block-contato-page .input-group.full{ grid-column: span 2; }

        #block-contato-page .premium-label{
            display: block;
            margin-bottom: 8px;
            font-family: 'Ekster', sans-serif;
            font-weight: 700;
            font-size: 14px;
            color: #333333;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        #block-contato-page .premium-input{
            width: 100%;
            background: #F8F8F8;
            border: 1px solid #D1D1D1;
            border-radius: 8px;
            font-family: 'Ekster', sans-serif;
            font-size: 16px;
            color: #000;
            padding: 18px 20px;
            transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
            outline: none;
        }

        #block-contato-page .premium-input::placeholder{ color: #aaaaaa; }

        #block-contato-page .premium-input:focus{
            border-color: var(--gold);
            background: #ffffff;
        }

        #block-contato-page textarea.premium-input{
            resize: vertical;
            min-height: 120px;
        }

        /* Botão do formulário no mesmo estilo */
        #block-contato-page .glowing-submit{
            margin-top: 10px;
            width: 100%;
            background: var(--gold);
            color: var(--white); /* TEXTO BRANCO COMO PEDIDO */
            border: none;
            padding: 22px 0;
            border-radius: 12px;
            font-family: 'Lemon Milk', sans-serif;
            font-size: 16px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: background 0.4s ease, color 0.4s ease, box-shadow 0.6s ease-in-out;
            box-shadow: 0 0 0px rgba(216, 154, 20, 0);
            z-index: 1;
        }

        #block-contato-page .glowing-submit::before{
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transform: translateX(-100%) skewX(-15deg);
            z-index: -1;
            transition: none;
        }

        #block-contato-page .glowing-submit:hover{
            background: #f7b11d;
            box-shadow: 0 0 30px rgba(216, 154, 20, 0.7);
            color: var(--white);
        }

        #block-contato-page .glowing-submit:hover::before{
            transform: translateX(100%) skewX(-15deg);
            transition: transform 0.8s ease;
        }

        /* CUSTOM SELECT - Dropdown Seamless para fundo branco */
        #block-contato-page .select-group{ position: relative; }
        #block-contato-page .select-group::after{
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 6px solid var(--gold);
            pointer-events: none;
            transition: transform 0.3s;
        }
        #block-contato-page .premium-input.is-open ~ .select-group::after{ transform: translateY(-50%) rotate(180deg); }

        #block-contato-page .drop-options{
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #ffffff;
            border: 1px solid #D1D1D1;
            border-radius: 8px;
            max-height: 250px;
            overflow-y: auto;
            z-index: 20;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        #block-contato-page .drop-options.open{
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        #block-contato-page .drop-optgroup{ padding: 12px 15px 5px; font-size: 11px; font-weight: 800; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid #f0f0f0; }
        #block-contato-page .drop-option{ padding: 12px 15px; font-size: 16px; color: #333; cursor: pointer; transition: background 0.2s, color 0.2s; }
        #block-contato-page .drop-option:hover{ background: rgba(216, 154, 20, 0.15); color: #000; font-weight: 500; }

        #block-contato-page .drop-options::-webkit-scrollbar{ width: 6px; }
        #block-contato-page .drop-options::-webkit-scrollbar-thumb{ background: rgba(216, 154, 20, 0.5); border-radius: 3px; }

        /* RESPONSIVIDADE */
        @media (max-width: 1100px){
            #block-contato-page .r360-contato-wrapper{ padding: 40px 20px; height: auto; display: block; }
            #block-contato-page .glass-panel{ grid-template-columns: 1fr; border-radius: 20px; }
            #block-contato-page .info-col{ padding: 50px 30px; }
            #block-contato-page .form-col{ padding: 50px 30px; border-radius: 0 0 20px 20px; }
            #block-contato-page .action-badges{ max-width: 100%; }
            #block-contato-page .map-orb-container{ margin-top: 40px; margin-bottom: 20px; } /* Evita colar em cima */
        }

        @media (max-width: 600px){
            #block-contato-page .form-grid{ grid-template-columns: 1fr; gap: 20px 0; }
            #block-contato-page .input-group{ grid-column: span 1; }
            #block-contato-page .input-group.full{ grid-column: span 1; }
            #block-contato-page .title-group h2{ font-size: 32px; }
            #block-contato-page .action-badges{ margin: 30px 0; }
        }