/* ===== Reset ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== Base ===== */
body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, #121212 0%, #1c1c1e 100%);
    color: #ffffff;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

/* bloqueia scroll ao abrir o menu */

/* ===== Sidebar (off-canvas) ===== */
.sidebar {
    position: fixed;
    left: -280px;
    /* escondida */
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #121212 0%, #1c1c1e 100%);
    border-right: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    flex-direction: column;
    z-index: 1001;
    transition: left 0.3s ease;
}

.sidebar.active {
    left: 0;
}

/* Botão X dentro do menu */
.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #d4af37;
    font-size: 22px;
    cursor: pointer;
}

/* ===== Overlay transparente (somente clique) ===== */
.overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    /* NÃO muda a cor do fundo */
    z-index: 1000;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    /* não clica quando inativo */
    transition: visibility 0s linear 0.3s;
    /* espera a transição terminar p/ sumir */
}

.overlay.active {
    visibility: visible;
    pointer-events: auto;
    /* captura clique para fechar */
    transition-delay: 0s;
}

/* ===== Botão Hamburguer ===== */
.mobile-menu-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    background: #d4af37;
    color: #121212;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

/* ===== Branding / Navegação ===== */
.logo {
    padding: 40px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 5px;
}

.logo p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12px;
    color: #d9d9d9;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-menu {
    flex: 1;
    padding: 30px 0;
}

.nav-link {
    display: block;
    padding: 15px 30px;
    color: #d9d9d9;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    color: #d4af37;
    border-left-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.nav-link i {
    margin-right: 12px;
    width: 16px;
    text-align: center;
}

.cta-button {
    font-family: 'Cormorant Garamond', serif;
    margin: 20px 30px;
    padding: 15px 25px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #121212;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.social-links {
    padding: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.social-links h4 {
    font-size: 12px;
    color: #d9d9d9;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #121212;
    transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    /* Mantém o fundo do body visível + imagem de capa */
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.8) 100%),
        url("Imagem/Agência de Marketin.png") center/cover;
    /* verifique o nome do arquivo */
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(0, 0, 0, 0.4) 70%);
    animation: pulse 4s ease-in-out infinite alternate;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    gap: 6rem;
    z-index: 2;
    position: relative;
}

.hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: slideInLeft 1s ease-out;
}

/* Hero usa Cormorant para tipografia mais elegante */
.hero,
.hero * {
    font-family: 'Cormorant Garamond', serif;
}

.hero-img {
    width: 600px;
    height: 600px;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}


.hero-right {
    flex: 1;
    color: #fff;
    animation: slideInRight 1s ease-out 0.2s both;
}

.hero-text {
    max-width: 500px;
}

.hero-text span {
    display: block;
    font-size: 1.1rem;
    color: #D4AF37;
    letter-spacing: 5px;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-text h1 {
    font-size: 3.1rem;
    margin: 2rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #D4AF37;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1.1s both;
    letter-spacing: 1.5px;
}

/* Espaçadores fictícios para teste de navegação (remova quando tiver conteúdo real) */
.section-spacer {
    height: 100vh;
}

/* ===== Animações ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    from {
        opacity: 0.8;
    }

    to {
        opacity: 1;
    }
}

/* ===== Responsivo ===== */
@media (max-width: 900px) {
    .hero-container {
        gap: 3rem;
    }

    .hero-img {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-img {
        width: 260px;
        height: 260px;
    }

    .hero-text h1 {
        font-size: 2.4rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-img {
        width: 200px;
        height: 200px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }
}


/* ===== SEÇÕES PROFISSIONAIS E SOFISTICADAS ===== */

/* Container principal das seções */
.section {
    position: relative;
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Títulos das seções */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #d4af37, #f4d03f);   
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(217, 217, 217, 0.9);
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: 0.5px;
    font-weight: 300;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SOBRE NÓS - Design Premium ===== */
.sobre-nos {
    background:
        radial-gradient(ellipse at top, rgba(212, 175, 55, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #121212 0%, #1a1a1c 100%);
}

.sobre-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.sobre-card {
    position: relative;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 45px 35px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.sobre-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.sobre-card:hover::before {
    opacity: 1;
}

.sobre-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sobre-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8e8e8;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.sobre-card strong {
    color: #d4af37;
    font-weight: 700;
}

/* ===== FILOSOFIA - Design Hexagonal Elegante ===== */
.filosofia {
    background:
        radial-gradient(circle at center, rgba(212, 175, 55, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, #1a1a1c 0%, #121212 100%);
}

.filosofia-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.filosofia-item {
    position: relative;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.filosofia-item::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.filosofia-item:hover::before {
    opacity: 1;
}

.filosofia-item:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 40px rgba(212, 175, 55, 0.15);
}

.filosofia-icon {
    font-size: 3rem;
    color: #d4af37;
    margin-bottom: 25px;
    display: inline-block;
    padding: 20px;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.4s ease;
}

.filosofia-item:hover .filosofia-icon {
    transform: scale(1.1) rotateY(360deg);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.filosofia-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.filosofia-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(217, 217, 217, 0.9);
    font-weight: 300;
    letter-spacing: 0.2px;
}

/* ===== DIFERENCIAL - Design Premium com Destaque ===== */
.diferencial {
    background:
        radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        linear-gradient(135deg, #121212 0%, #1c1c1e 100%);
}

.diferencial-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.diferencial h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.diferencial-content>p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(217, 217, 217, 0.9);
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.diferencial-highlight {
    position: relative;
    margin: 60px 0;
    padding: 50px 40px;
    background:
        linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.diferencial-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #d4af37 0%, #f4d03f 100%);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.diferencial-highlight::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.2);
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
}

.diferencial-highlight p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #ffffff;
    font-style: italic;
    font-weight: 500;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* ===== MISSÃO - Design Impactante ===== */
.missao {
    background:
        radial-gradient(circle at top, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
        linear-gradient(135deg, #1c1c1e 0%, #121212 100%);
}

.missao-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.missao h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.missao-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(217, 217, 217, 0.95);
    margin: 40px 0 60px;
    font-weight: 400;
    letter-spacing: 0.3px;
}

.missao-cta {
    display: inline-block;
    position: relative;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #121212;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow:
        0 10px 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    overflow: hidden;
    letter-spacing: 1px;
}

.missao-cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.missao-cta:hover::before {
    left: 100%;
}

.missao-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow:
        0 20px 40px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(212, 175, 55, 0.2);
}

.missao-cta i {
    margin-right: 12px;
    transition: transform 0.3s ease;
}

.missao-cta:hover i {
    transform: translateX(5px);
}

/* ===== Animações de Entrada ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(60px);
    animation: fadeInUpSection 0.8s ease-out forwards;
}

.fade-in-up:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-up:nth-child(3) {
    animation-delay: 0.4s;
}

.fade-in-up:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes fadeInUpSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Responsividade Profissional ===== */
@media (max-width: 1200px) {
    .section {
        padding: 100px 30px;
    }

    .sobre-content {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .filosofia-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 60px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .sobre-card {
        padding: 35px 25px;
    }

    .filosofia-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .filosofia-item {
        padding: 40px 25px;
    }

    .filosofia-icon {
        font-size: 2.5rem;
        padding: 15px;
    }

    .diferencial-highlight {
        padding: 40px 25px;
        margin: 40px 0;
    }

    .diferencial-highlight p {
        font-size: 1.3rem;
    }

    .missao-cta {
        padding: 18px 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .sobre-card {
        padding: 30px 20px;
    }

    .filosofia-item {
        padding: 35px 20px;
    }

    .diferencial-highlight {
        padding: 30px 20px;
    }

    .diferencial-highlight p {
        font-size: 1.2rem;
    }

    .missao-cta {
        padding: 16px 35px;
        font-size: 1rem;
    }
}

        /* ===== FOOTER STYLES ===== */
        .footer {
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            border-top: 3px solid #FFD700;
            margin-top: 50px;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 40px;
        }

        .footer-section h3, .footer-section h4 {
            color: #FFD700;
            font-size: 1.3em;
            margin-bottom: 20px;
            font-weight: bold;
            position: relative;
        }

        .footer-logo h3 {
            font-size: 1.8em;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
        }

        .logo-accent {
            width: 50px;
            height: 3px;
            background: linear-gradient(135deg, #FFD700, #FFA500);
            border-radius: 2px;
            margin-bottom: 20px;
        }

        .footer-description {
            color: #ccc;
            line-height: 1.6;
            margin-bottom: 25px;
            font-size: 0.95em;
        }

        .social-media {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255, 215, 0, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFD700;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #FFD700, #FFA500);
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
        }

        .social-link svg {
            width: 20px;
            height: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95em;
        }

        .footer-links a:hover {
            color: #FFD700;
            padding-left: 10px;
        }

        .footer-links a:before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 2px;
            background: #FFD700;
            transition: width 0.3s ease;
        }

        .footer-links a:hover:before {
            width: 8px;
        }

        .contact-info {
            space-y: 15px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: #ccc;
            font-size: 0.95em;
        }

        .contact-item svg {
            width: 18px;
            height: 18px;
            color: #FFD700;
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            padding-top: 30px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright p {
            color: #ccc;
            font-size: 0.9em;
        }

        .footer-bottom-links {
            display: flex;
            gap: 25px;
        }

        .footer-bottom-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.9em;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #FFD700;
        }

        /* Responsividade do Footer */
        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
            
        }

        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .header {
                padding: 30px 20px;
            }
            
            .header h1 {
                font-size: 2em;
            }
            
            .checkbox-group, .budget-range {
                grid-template-columns: 1fr;
            }

            .footer-content {
                padding: 40px 20px 30px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 35px;
            }
            
            .social-media {
                justify-content: center;
            }
            
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            
            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .social-link {
                width: 40px;
                height: 40px;
            }
            
            .social-link svg {
                width: 18px;
                height: 18px;
            }
            
        }