/* ========================================
   CONFIGURAÇÕES BASE - IDÊNTICAS À HOME
   ======================================== */
   *, *::before, *::after {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, p, ul, ol, li, figure {
    margin: 0;
    padding: 0;
}

:root {
    --primary-color: #C9A848; /* Dourado - EXATAMENTE IGUAL À HOME */
    --secondary-color: #1a1a1a;
    --text-color: #ffffff;
    --overlay-color: rgba(0, 0, 0, 0.65);
    --font-main: 'Montserrat', sans-serif;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #000;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   HEADER - MELHORADO PARA DESKTOP (IGUAL AO SOBRE MIM)
   ======================================== */

header {
    background-color: rgba(3, 3, 3, 0.8);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    z-index: 1000;
    backdrop-filter: blur(8px);
    transition: background-color 0.3s ease;
    border-radius: 0;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
}

.logo img {
    max-width: 150px;
    height: auto;
}

/* Menu Mobile - PADRONIZADO */
nav {
    position: relative;
}

.menu-icon {
    display: block;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    z-index: 1001;
}

.menu {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #1a1a1a;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 2rem;
}

.menu.menu-visible {
    display: flex;
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    display: block;
}

.menu-logo {
    margin-bottom: 2rem;
}

.menu-logo img {
    max-width: 120px;
    height: auto;
}

.menu ul {
    list-style: none;
    width: 100%;
    padding: 0;
}

.menu ul li {
    text-align: center;
    margin: 1rem 0;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.5rem;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #C9A848;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}

/* Menu Desktop - CORRIGIDO - IGUAL AO SOBRE MIM */
@media (min-width: 1024px) {
    header {
        left: 50%;                          /* ✅ CORRIGIDO */
        transform: translateX(-50%);        /* ✅ CORRIGIDO */
        width: 95%;
        max-width: 1400px;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .menu-icon {
        display: none;
    }

    .menu {
        display: flex !important;
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transform: none;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 0 auto;
    }

    .close-menu,
    .menu-logo {
        display: none;
    }

    .menu ul {
        display: flex;
        align-items: center;
        gap: 3rem;
        width: auto;
        justify-content: center;
    }

    .menu ul li {
        margin: 0;
    }

    .menu ul li a {
        font-size: 1.1rem;
        font-weight: 500;
        padding: 1rem 1.5rem;
        position: relative;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .menu ul li a::after {
        content: '';
        position: absolute;
        bottom: 8px;
        left: 50%;
        width: 0;
        height: 2px;
        background-color: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .menu ul li a:hover {
        background-color: rgba(201, 168, 72, 0.1);
        color: var(--primary-color);
    }

    .menu ul li a:hover::after {
        width: 70%;
    }

    .menu ul li a[aria-current="page"] {
        color: var(--primary-color);
        background-color: rgba(201, 168, 72, 0.15);
    }

    .menu ul li a[aria-current="page"]::after {
        width: 70%;
    }

    .overlay {
        display: none !important;
    }
}

/* Desktop Large - Ainda mais centralizado */
@media (min-width: 1440px) {
    header {
        width: 90%;
        max-width: 1600px;
        padding: 1.5rem 3rem;
    }

    .menu ul {
        gap: 4rem;
    }

    .menu ul li a {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
    }
}

/* ========================================
   ESTILOS DA PÁGINA DE CONTATO (mantidos como estavam)
   ======================================== */

/* Hero com foto personalizada */
main.contato-premium-container {
    padding-top: 120px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    main.contato-premium-container {
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    main.contato-premium-container {
        padding-top: 35px;
    }
}

.intro-contact-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 3rem;
}

.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.4) contrast(1.1);
    transition: transform 20s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(17,17,17,0.5) 50%, rgba(0,0,0,0.8) 100%);
    z-index: 2;
}

.intro-contact {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    padding: 0 2rem;
}

.intro-contact h1 {
    font-size: 2.8rem;
    font-weight: 900;
    letter-spacing: .06em;
    margin-bottom: 1rem;
    background: linear-gradient(90deg,#fff,var(--primary-color),#fff 60%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.intro-contact p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Cards com fotos de fundo */
.channels-cards {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
    padding: 0 1rem;
}

.card-channel {
    position: relative;
    border-radius: 19px;
    box-shadow: 0 8px 32px rgba(0,0,0,.17), 0 0 30px rgba(201,168,72,0.04);
    text-decoration: none;
    min-width: 250px;
    flex: 1 1 300px;
    height: 200px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.3px solid #1f1f1f;
}

.card-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.card-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: brightness(0.3) grayscale(0.3);
    transition: filter 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 36px;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(25,28,31,0.8) 100%);
    color: #fff;
    font-size: 1.11rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-channel:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(201,168,72,0.15), 0 0 40px rgba(0,0,0,0.2);
}

.card-channel:hover .card-bg-image img {
    filter: brightness(0.6) grayscale(0);
    transform: scale(1.08);
}

.card-channel:hover .card-content {
    background: linear-gradient(135deg, rgba(201,168,72,0.9) 0%, rgba(25,28,31,0.7) 100%);
    color: #000;
}

.card-channel .icon-wrap {
    background: rgba(35,35,36,0.8);
    border-radius: 50%;
    width: 52px; 
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-right: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.card-channel.insta:hover .icon-wrap { 
    background: linear-gradient(45deg,#fdf497 0%,#fd5949 40%,#d6249f 100%);
}
.card-channel.whats:hover .icon-wrap { 
    background: #25d366;
}
.card-channel.linkedin:hover .icon-wrap { 
    background: #0077b5;
}

.card-channel.insta .icon-wrap i{ color:#fd5949;}
.card-channel.whats .icon-wrap i{ color:#25d366;}
.card-channel.linkedin .icon-wrap i{ color:#0077b5;}
.card-channel:hover .icon-wrap i { color:#000;}

.card-channel .info .label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: .07rem;
    transition: color 0.3s ease;
}

.card-channel:hover .info .label {
    color: #000;
}

.card-channel .info .value {
    font-size: 1.11rem;
    letter-spacing: .01em;
    transition: color 0.3s ease;
}

/* Formulário com foto lateral */
.premium-form-section {
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    padding: 0 1rem;
}

.form-container {
    display: flex;
    background: #191c1f;
    border-radius: 19px;
    box-shadow: 0 8px 40px rgba(201,168,72,0.08), 0 0 20px rgba(0,0,0,0.1);
    overflow: hidden;
    gap: 0;
    border: 1px solid rgba(201,168,72,0.1);
}

.form-image {
    flex: 1;
    min-height: 300px;
    overflow: hidden;
    position: relative;
}

.form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    transition: transform 0.4s ease;
}

.contato-form {
    flex: 1;
    padding: 34px 24px 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: transparent;
    box-shadow: none;
}

.contato-form h2 {
    color: var(--primary-color); 
    font-size: 1.14rem; 
    font-weight: 700;
    margin-bottom: 13px;
    text-align: center;
    letter-spacing: .009em;
}

.contato-form input, .contato-form textarea {
    background: #181818;
    border: 1.4px solid #313131;
    border-radius: 8px;
    font-size: 1.03rem;
    color: #fff;
    padding: 12px 13px;
    font-family: inherit;
    margin: 0;
    transition: all 0.3s ease;
}

.contato-form input:focus, .contato-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #1f1f1f;
    box-shadow: 0 0 0 3px rgba(201,168,72,0.1);
}

.contato-form button {
    background: linear-gradient(91deg,var(--primary-color) 80%,#e6c456 110%);
    color: #201a03;
    border: none;
    font-weight: 800;
    font-size: 1.06rem;
    border-radius: 8px;
    padding: 14px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.9em;
    justify-content: center;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(201,168,72,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: .03em;
}

.contato-form button:hover { 
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,168,72,0.3);
    filter: brightness(1.08);
}

.form-feedback {
    text-align: center;
    font-size: .96rem;
    font-weight: 600;
    margin-top: 10px;
    min-height: 1.6em;
    color: var(--primary-color);
}

/* ========================================
   FOOTER PADRONIZADO (IDÊNTICO ÀS OUTRAS PÁGINAS)
   ======================================== */
.main-footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: var(--text-color);
    position: relative;
    margin-top: auto;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-column {
    text-align: center;
}

.footer-brand {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
    filter: brightness(1.1);
}

.footer-tagline {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

.footer-tagline strong {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.7;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.footer-links li a:hover {
    color: var(--primary-color);
    background: rgba(201, 168, 72, 0.1);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border: 2px solid rgba(201, 168, 72, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 72, 0.3);
}

.footer-cta {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(201, 168, 72, 0.2);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #e6c456);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(201, 168, 72, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 168, 72, 0.4);
    background: linear-gradient(135deg, #e6c456, var(--primary-color));
}

.cta-button i {
    font-size: 1.1rem;
}

.footer-middle {
    padding: 2.5rem 0;
    background: rgba(26, 26, 26, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.coverage-area {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coverage-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.coverage-content {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
}

.primary-location {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: rgba(201, 168, 72, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(201, 168, 72, 0.3);
}

.secondary-locations {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.5;
}

.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.8);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-color);
}

.site-credits {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   RESPONSIVIDADE - IGUAL À HOME
   ======================================== */
@media (max-width:700px){
    .intro-contact-hero { 
        height: 50vh; 
        min-height: 350px; 
    }
    .intro-contact h1 { 
        font-size: 2.2rem; 
    }
    .channels-cards{
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
    .card-channel{
        min-width: 280px;
        max-width: 350px;
        height: 180px;
    }
    .card-content { 
        padding: 20px 24px; 
    }
    .premium-form-section{
        padding: 0 8px;
    }
    .form-container { 
        flex-direction: column; 
    }
    .form-image { 
        min-height: 200px; 
    }
    .footer-grid { grid-template-columns: 1fr; }
    .coverage-content { flex-direction: column; }
    .footer-bottom-content { flex-direction: column; }
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: left;
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 2rem;
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: 4rem;
    }
    
    .footer-brand {
        grid-column: auto;
        display: block;
        text-align: left;
    }
}

@media (max-width:420px){
    .card-content { 
        padding: 16px; 
        gap: 15px;
    }
    .card-channel {
        min-width: 260px;
    }
    .intro-contact h1 {
        font-size: 1.8rem;
    }
    .intro-contact p {
        font-size: 1rem;
    }
}
