/* Estilos gerais para o corpo da página e para resetar margens/espaçamentos */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

.gilda-display-regular {
  font-family: "Gilda Display", serif;
  font-weight: 400;
  font-style: normal;
}

.spectral-medium-italic {
  font-family: "Spectral", serif;
  font-weight: 500;
  font-style: italic;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* No seu arquivo estilo.css */
#imagemPrincipal {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
}

#tituloPrincipal {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 3.5em;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
}

.paginacao {
    position: absolute;
    bottom: 60px;
    right: 100px;
    z-index: 2;
}

.paginacao ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}

.paginacao li {
    color: #E0E0E0;
    font-size: 1.2em;
    font-weight: bold;
    margin: 0;
    cursor: pointer;
    padding: 5px 20px;
    position: relative;
    transition: margin-left 0.4s ease-in-out, 
                margin-right 0.4s ease-in-out, 
                color 0.3s ease-in-out;
}

.paginacao li.ativo {
    color: white;
}

/* Estilização base da linha ::after - começa escondida */
.paginacao li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background-color: white;
    opacity: 0;
    transition: width 0.4s ease-in-out, opacity 0.4s ease-in-out;
}

/* Quando a classe .show-line é adicionada ao LI, a linha se torna visível */
.paginacao li.show-line:not(:last-child)::after {
    width: 20px;
    opacity: 1;
}

/* ========================================================
   MEDIA QUERY: Onde a mágica acontece
   ======================================================== */

@media (max-width: 992px) {
    /* Esconde os links de navegação do desktop */
    #tituloPrincipal {
        font-size: 2em;
    }

    /* Ajusta o espaçamento da barra de navegação principal */
    .main-header {
        padding: 0px 25px !important;
    }

    .portfolio-page-content {
        padding: 0 !important;
    }
}

@media (max-width: 480px) {
    /* Em telas muito pequenas, move a logo para a esquerda para dar mais espaço */

    #tituloPrincipal {
        font-size: 1.5em;
    }
   .paginacao {
    right: auto;
   }

   .paginacao li {
    font-size: 1em;
   }

    .main-header {
        padding: 0px 25px;
    }

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

/*
========================================
ESTILOS DA BARRA DE NAVEGAÇÃO PRINCIPAL
========================================
*/

.main-header {
    background-color: white;
    padding: 20px 50px;
    border-top: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-links-left,
.nav-links-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links-left a,
.nav-links-right a,
.dropdown-btn {
    font-family: "Gilda Display", serif;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.nav-links-left a:hover,
.nav-links-right a:hover,
.dropdown-btn:hover {
    color: #888;
}

.nav-logo img {
    max-height: 350px;
}

/* ========================================================
   ESTILOS DO MENU RESPONSIVO (HAMBÚRGUER E MOBILE)
   ======================================================== */

/* --- Botão Hambúrguer --- */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 2000;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
}

/* --- Menu de Navegação Móvel (Overlay) --- */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    /* Começa fora da tela e com transição suave */
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1500;
}

/* Classe que o JavaScript irá adicionar para mostrar o menu */
.mobile-nav.is-open {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: "Gilda Display", serif;
    color: #333;
    font-size: 1.8em;
    text-decoration: none;
    margin: 20px 0;
    font-weight: bold;
}

/* Botão de Fechar (X) */
.close-menu {
    position: absolute;
    top: 100px;
    right: 30px;
    background: none;
    border: none;
    font-size: 3em;
    color: #333;
    cursor: pointer;
}

/* ========================================================
   ESTILOS DO DROPDOWN DO MENU MÓVEL (ACORDEÃO)
   ======================================================== */

.mobile-dropdown {
    width: 100%;
    text-align: center;
}

/* Botão que controla o acordeão */
.mobile-dropdown-toggle {
    font-family: "Gilda Display", serif;
    color: #333;
    font-size: 1.8em;
    text-decoration: none;
    margin: 20px 0;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-dropdown-toggle .arrow {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s ease-in-out;
}

/* Gira a seta quando o menu está ativo/aberto */
.mobile-dropdown-toggle.is-active .arrow {
    transform: rotate(180deg);
}

/* Conteúdo do acordeão (sub-links) */
.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    background-color: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    width: 90%;
    margin: 0 auto;
}

.mobile-dropdown-content.is-open {
    max-height: 200px;
    padding: 10px 0;
}

/* Estilo dos sub-links */
.mobile-dropdown-content a {
    font-size: 1.2em;
    font-weight: normal;
    margin: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-menu {
    display: none;
}

/* ========================================================
   MEDIA QUERY: Onde a mágica acontece
   ======================================================== */

@media (max-width: 992px) {
    /* Esconde os links de navegação do desktop */
    .nav-links-left,
    .nav-links-right {
        display: none;
    }

    /* Mostra o botão hambúrguer */
    .hamburger-menu {
        display: flex;
    }

    /* Centraliza a logo quando os links somem */
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .main-nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        max-width: 1200px;
        margin: 100px auto;
    }
}

@media (max-width: 480px) {
    /* Em telas muito pequenas, move a logo para a esquerda para dar mais espaço */
    .nav-logo {
        position: static;
        transform: none;
        left: auto;
    }
}

/* ========================================================
   AJUSTE FINO PARA TELAS MUITO PEQUENAS (EX: IPHONE SE)
   ======================================================== */

@media (max-width: 420px) {
    .main-nav {
        position: relative;
        justify-content: flex-end;
    }

    /* 2. Posiciona a logo de forma absoluta, no centro exato da tela. */
    .nav-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: auto; 
    }

    .nav-logo img {
        max-height: 250px;
    }
    
    .main-header {
        padding: 15px 20px;
    }
}

/*
========================================
ESTILOS DO DROPDOWN (PORTFÓLIO)
========================================
*/

.dropdown {
    position: relative;
}

.dropdown .arrow {
    font-size: 0.8em;
    margin-left: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    min-width: 200px;
    z-index: 10;
    border-radius: 4px;
    padding: 10px 0;
}

.dropdown-content.show {
    display: block;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/*
========================================
ESTILOS DA SEÇÃO "SOBRE MIM"
========================================
*/

.about-section {
    padding-bottom: 50px;
    margin-bottom: 5rem;
    margin-right: 80px;
    background-color: #f2efef;
    border-radius: 0 20px 20px 0;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.about-image {
    flex: 0 0 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: -10px 10px 25px rgba(0,0,0,0.1);
    border-radius: 4px;
    margin-top: -30px;
}

.about-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2efef;
    z-index: -1;
    border-radius: 20px;
}

.about-text h2 {
    font-size: 2em;
    color: #303030;
    margin-top: 0;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1em;
    color: #303030;
    line-height: 1.6;
    margin-bottom: 15px;
}

/*
========================================
ESTILOS RESPONSIVOS PARA A SEÇÃO "SOBRE" (REVISADO)
========================================
*/
@media (max-width: 820px) {
    .about-container {
        flex-direction: column;
        gap: 0;
    }

    .about-image {
        width: 70%;
        margin-bottom: -60px;
        position: relative;
        z-index: 2;
    }

    .about-text {
        width: 100%;
        padding-top: 90px;
        text-align: center;
    }
}

@media (max-width: 420px) {
    .about-container {
        flex-direction: column;
        gap: 0;
    }

    .about-section {
        margin-right: auto;
        border-radius: 0;
    }

    .about-image {
            width: 70%;
            margin-bottom: -60px;
            position: relative;
            z-index: 2;
    }

    .about-image img {
        margin-top: 40px;
    }

    .about-text h2 {
        font-size: 1.5em;
    }

    .about-text {
        width: 100%;
        padding-top: 90px;
        text-align: center;
    }

    .about-text p {
        margin: 40px;
    }
}

/*
========================================
ESTILOS DA SEÇÃO "MANIFESTO"
========================================
*/

.manifesto-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.manifesto-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 60px; */
    max-width: 1100px;
    margin: 0 auto;
}

.manifesto-text {
    flex: 1 1 50%;
    margin-left: 40px;
    position: relative;
    padding: 80px;
    box-sizing: border-box;
    background-color: #f2efef;
    box-shadow: -10px 10px 25px rgba(0,0,0,0.1);
    border-radius: 20px;
    margin-right: -20px;
    z-index: 2;
}

/* Fundo do card de texto do manifesto */
.manifesto-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f2efef;
    z-index: -1;
    border-radius: 20px;
}

.manifesto-text h2 {
    font-size: 2em;
    color: #303030;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 25px;
}

.manifesto-text p {
    font-size: 1em;
    color: #303030;
    line-height: 1.7;
    margin-bottom: 20px;
}

.manifesto-image {
    flex: 0 0 50%;
}

.manifesto-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    box-shadow: 10px 10px 25px rgba(0,0,0,0.1);
}


/*
========================================
ESTILOS RESPONSIVOS PARA A SEÇÃO "MANIFESTO"
========================================
*/
@media (max-width: 820px) {
    .manifesto-container {
        flex-direction: column-reverse; 
        gap: 30px;
    }

    .manifesto-section {
        padding: 0 20px;
    }

    .manifesto-image {
        display: none;
    }

    .manifesto-text {
        padding: 40px 25px;
        text-align: center;
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
}

/*
========================================
ESTILOS DO PORTFÓLIO INTERATIVO (COM CARROSSEL)
========================================
*/

.interactive-portfolio {
    background-color: #fff;
    padding: 50px 80px;
    font-family: 'Georgia', serif;
}

.portfolio-container-interactive {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 0;
    gap: 14px;
}

.portfolio-menu {
    flex: 1;
}

.portfolio-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.portfolio-item h2 {
    font-size: 40px;
    margin: 0;
    transition: color 0.3s ease;
}

.portfolio-item span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 8px;
    display: inline-block;
    transition: color 0.3s ease;
}

.portfolio-item.active h2,
.portfolio-item.active span {
    color: #000;
    font-weight: 500;
}

.portfolio-item:not(.active) h2,
.portfolio-item:not(.active) span {
    color: #d3d3d3;
}

.portfolio-image {
    flex: 1;
    max-width: 400px;
    position: relative;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
}

.portfolio-flex {
    display: contents;
}

.portfolio-img-display {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    opacity: 0; 
}

.portfolio-img-display.is-active {
    opacity: 1;
}

.portfolio-arrow.prev-arrow, 
.portfolio-arrow.next-arrow {
    cursor: pointer;
}

@media (max-width: 820px) {

    .portfolio-img-display {
        position: absolute;
        top: 0;
        left: 0;
    }
    .portfolio-container-interactive {
        flex-direction: column;
        gap: 40px;
    }

    .portfolio-menu {
        width: 100%;
    }

    .portfolio-image {
        flex: none;
        width: 100%;
        max-width: 500px;
        height: 450px;
    }

    .portfolio-flex {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .portfolio-arrow {
        width: 8rem;
    }

    /* .portfolio-arrow.prev-arrow, 
    .portfolio-arrow.next-arrow {
        visibility: visible;
    } */
}

/*
========================================
ESTILOS DA SEÇÃO INSTAGRAM
========================================
*/
.instagram-section {
    background-color: #f2efef;
    padding: 80px 20px;
    text-align: center;
}

.instagram-section h2 {
    font-size: 2em;
    color: #303030;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.instagram-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.instagram-grid img {
    width: 22%;
    padding: 20px;
}

@media (max-width: 820px) {
    .instagram-grid img {
        padding: 20px;
        width: 65%;
    }
}

/*
========================================
ESTILOS DO RODAPÉ (FOOTER)
========================================
*/
.site-footer {
    font-family: Arial, sans-serif;
}

.footer-top {
    background-color: #ffffff;
    padding: 60px 0px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-logo img {
    max-width: 250px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    font-family: "Gilda Display", serif;
    text-decoration: none;
    color: #555;
    font-size: 0.9em;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-contact .icon {
    font-size: 1.2em;
    margin-right: 15px;
    color: #333;
}

.footer-contact a {
    font-family: "Montserrat", serif;
    text-decoration: none;
    color: #555;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #000;
}

.footer-bottom {
    background-color: #ffffff;
    color: #a0a0a0;
    text-align: center;
    padding-bottom: 20px;
    font-size: 0.8em;
}

.footer-bottom p {
    margin: 0;
}

#img-footer {
    width: 25px;
    padding-right: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact li {
        justify-content: center;
    }
}

/*
========================================
ESTILOS DA PÁGINA DE PORTFÓLIO
========================================
*/

.portfolio-page-content {
    padding: 60px 0;
}

.page-title-section {
    text-align: center;
    margin-bottom: 60px;
}

.page-title-section h1 {
    font-family: "Gilda Display", serif;
    font-size: 3.5em;
    font-weight: 400;
    color: #333;
}

.carousel-section {
    width: 100%;
    margin-bottom: 60px;
}

.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-track-container {
    width: 80%;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-image {
    flex: 0 0 calc(100% / 3); 
    padding: 0 15px;
    box-sizing: border-box;
}

.carousel-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* VERSÃO CORRIGIDA E MAIS ROBUSTA */
.carousel-arrow {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.5em;
    color: #555;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s, color 0.3s;
}

.carousel-arrow:hover {
    background-color: #333;
    color: #fff;
}

.prev-arrow {
    left: 20px;
}

.next-arrow {
    right: 20px;
}

.cta-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    border-top: 1px solid #e0e0e0;
}

.cta-section h2 {
    font-family: "Gilda Display", serif;
    font-size: 2.5em;
    font-weight: 400;
    color: #333;
}

.bottom-nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
}

.vertical-divider {
    width: 1px;
    height: 80px;
    background-color: #e0e0e0;
}

.bottom-nav-item {
    text-decoration: none;
    text-align: center;
    color: #333;
}

.bottom-nav-item h3 {
    font-family: "Gilda Display", serif;
    font-size: 2.5em;
    font-weight: 400;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.bottom-nav-item span {
    font-family: "Montserrat", serif;
    text-transform: uppercase;
    font-size: 0.8em;
    letter-spacing: 1px;
    color: #888;
    transition: color 0.3s ease;
}

.bottom-nav-item:hover h3,
.bottom-nav-item:hover span {
    color: #888;
}


/*
========================================
ESTILOS RESPONSIVOS PARA PÁGINA DE PORTFÓLIO
========================================
*/
@media (max-width: 768px) {
    .page-title-section h1,
    .cta-section h2,
    .bottom-nav-item h3 {
        font-size: 2em;
    }

    .carousel-track-container {
        width: 70%;
    }

    .carousel-image {
        flex: 0 0 100%;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2em;
    }
    .prev-arrow { left: 5px; }
    .next-arrow { right: 5px; }

    .bottom-nav-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .vertical-divider {
        width: 100px;
        height: 1px;
    }
}

/*
========================================
ESTILOS PARA TRANSFORMAR O CARROSSEL EM LISTA VERTICAL
(TABLET E MOBILE)
========================================
*/
@media (max-width: 830px) {

    /* 1. Adiciona o espaçamento nas laterais da seção inteira */
    .carousel-section {
        padding-left: 20px;
        padding-right: 20px;
        /* Garante que o padding não "aumente" a largura total do elemento */
        box-sizing: border-box; 
    }

    /* 2. Esconde as setas, que não são necessárias na lista vertical */
    .carousel-arrow {
        display: none;
    }

    /* 3. Remove os limites do container que escondia as outras imagens */
    .carousel-track-container {
        width: 100%;
        overflow: visible; 
    }

    /* 4. Transforma o "trilho" de imagens em uma coluna vertical */
    .carousel-track {
        flex-direction: column;
        transform: none !important; /* Importante para anular o JS do carrossel */
        gap: 30px; /* << ESTE É O ESPAÇAMENTO ABAIXO DE CADA IMAGEM */
    }

    /* 5. Estiliza cada imagem individualmente na lista */
    .carousel-image {
        flex-basis: auto; 
        width: 100%;
        /* Define uma largura máxima para a imagem não ficar gigante em tablets */
        max-width: 500px; 
        /* Centraliza a imagem na tela quando sua largura for menor que o container */
        margin: 0 auto; /* << ESTA É A CENTRALIZAÇÃO HORIZONTAL */
        padding: 0;
    }
}

/*
========================================
ESTILOS DA PÁGINA DE CONTATO
========================================
*/

.contact-form-section {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.form-intro {
    text-align: center;
    margin-bottom: 100px;
}

.form-intro h1 {
    font-family: "Gilda Display", serif;
    font-size: 3em;
    font-weight: 400;
    margin-bottom: 30px;
    color: #333;
}

.form-intro p {
    font-family: "Montserrat", serif;
    font-size: 1.1em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

#form-column-one {
    padding: 25px;
    border-radius: 10px;
    background-color: #f2efef;
}

.form-column label {
    font-family: "Montserrat", serif;
    display: block;
    margin-bottom: 8px;
    font-size: 0.9em;
    color: #555;
    font-weight: bold;
}

.form-column input,
.form-column select,
.form-column textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f7f7f7;
    font-size: 1em;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    padding: 15px 50px;
    font-size: 1em;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background-color: #333;
    color: #fff;
    border-color: #333;
}

.form-consent {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.form-consent input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
    transform: scale(1.2);
}

.form-consent label {
    font-size: 0.9em;
    color: #555;
    margin: 0;
}

.form-consent label a {
    color: #2e6cb5;
    text-decoration: underline;
}


/* --- Estilos da Seção de FAQ --- */
.faq-section {
    max-width: 1090px;
    margin: 0 auto;
    padding: 0 20px;
    border-top: 1px solid #e0e0e0;
}

.faq-section h2 {
    font-family: "Gilda Display", serif;
    text-align: center;
    font-size: 2.5em;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 100px 0 50px 0;
    color: #333;
}

.faq-form-grid {
    display: flex;
    justify-content: space-around;
}

.faq-grid-inicial {
    width: 47%;
}

.faq-grid-final {
    width: 47%;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 25px 0;
}

.faq-item:first-of-type {
    border-top: 1px solid #e0e0e0;
}

.faq-question {
    font-family: "Gilda Display", serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    color: #444;
}

.faq-icon {
    font-size: 1.5em;
    font-weight: bold;
    color: #888;
}

.faq-answer {
    font-family: "Montserrat", serif;
    color: #666;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding-top 0.4s ease-out;
}

.faq-item.active .faq-answer {
    padding-top: 20px;
    max-height: 300px;
    transition: max-height 0.5s ease-in, padding-top 0.5s ease-in;
}


/*
========================================
ESTILOS RESPONSIVOS PARA PÁGINA DE CONTATO
========================================
*/
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-intro h1 { font-size: 2.2em; }
    .faq-section h2 { font-size: 2em; }
}

@media (max-width: 420px) {
    .form-intro h1 {
        font-size: 1.8em;
    }

    .faq-form-grid {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        align-content: stretch;
    }

    .faq-grid-inicial, 
    .faq-grid-final {
        width: 100%;
    }
}

/* =================================================================
   ESTILOS DA PÁGINA DE LINKS (links.html)
   ================================================================= */

/* --- Estilos Gerais e Fundo --- */
body.links-page {
    background-image: url('../img/foto-fundo-links.jpg'); 
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    color: #ffffff;
    font-family: 'Helvetica', 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px 0;
    position: relative;
}

body.links-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

/* --- Container Principal --- */
.links-container {
    max-width: 600px;
    width: 83%;
    text-align: center;
    /* position: relative; */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- Cabeçalho do Perfil --- */
.profile-header {
    display: flex;
    align-items: center;
    width: auto;
    height: 395px;
    margin-bottom: 30px;
    justify-content: center;
}

.profile-picture {
    margin-top: 40px;
    align-items: center;
    height: 395px;
    object-fit: cover;
    position: absolute;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.7s ease-in-out;
}

.links-section h1 {
    font-size: 1.5em;
    margin-top: 40px;
    margin-bottom: 10px;
    font-weight: bold;
    color: #303030;
}

.links-section p {
    font-size: 1em;
    line-height: 1.5;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    color: #303030;
    margin-bottom: 40px;
}

/* --- Seção de Links --- */
.links-section {
    width: 100%;
}

.link-button {
    display: block;
    width: 100%;
    padding: 18px 0px;
    margin: 15px 0;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1.5px solid #303030;
    border-radius: 50px;
    color: #303030;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.link-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.03);
}

/* Ícones dentro dos botões */
.link-button i {
    margin-right: 12px;
}

/* --- Rodapé com Ícones Sociais --- */
.social-footer {
    margin-top: 30px;
}

.social-icon {
    font-size: 2em;
    color: #303030;
    margin: 0 15px;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #686767;
}

/* Media Query para telas menores (celulares) */
@media (max-width: 800px) {
    .link-button {
        padding: 15px 0px;
    }
}

@media (max-width: 420px) {
    .link-button {
        padding: 15px 0px;
    }
}

/* =================================================================
   BOTÃO FLUTUANTE DO WHATSAPP
   ================================================================= */

.whatsapp-float-button {
    /* --- Posicionamento Fixo --- */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;

    /* --- Estilo da "Bolinha" --- */
    width: 60px;
    height: 60px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    
    /* --- Estilo do Ícone --- */
    color: #25D366;
    font-size: 36px;

    /* --- Centralização do Ícone --- */
    display: flex;
    justify-content: center;
    align-items: center;

    /* --- Animação Suave --- */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Efeito ao passar o mouse por cima */
.whatsapp-float-button:hover {
    transform: scale(1.1);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

a:-webkit-any-link {
    text-decoration: none;
}

/* =================================================================
   ESTILOS DA PÁGINA DE POLÍTICA DE PRIVACIDADE
   ================================================================= */
.privacy-policy-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px 50px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    line-height: 1.7;
    color: #333;
}

/* Título principal da página */
.privacy-policy-container h1 {
    font-size: 2.5em;
    font-weight: bold;
    color: #1a1a1a;
    text-align: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

/* Subtítulos das seções (ex: "1. Nosso Compromisso...") */
.privacy-policy-container h3 {
    font-size: 1.5em;
    font-weight: bold;
    color: #2c2c2c;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Parágrafos de texto */
.privacy-policy-container p {
    font-size: 1em;
    margin-bottom: 1em;
}

/* Listas com marcadores */
.privacy-policy-container ul {
    list-style-type: disc;
    padding-left: 25px;
    margin-bottom: 1.5em;
}

.privacy-policy-container li {
    margin-bottom: 0.7em;
}

/* Estilo para links dentro do texto */
.privacy-policy-container a {
    color: #2e6cb5;
    text-decoration: none;
    font-weight: bold;
    transition: text-decoration 0.2s ease-in-out;
}

.privacy-policy-container a:hover {
    text-decoration: underline;
}

/* Estilo para texto em negrito (<strong>) */
.privacy-policy-container strong {
    color: #000;
}

/* Media Query para telas menores (celulares) */
@media (max-width: 768px) {
    .privacy-policy-container {
        margin: 30px auto;
        padding: 25px 20px;
    }

    .privacy-policy-container h1 {
        font-size: 2em;
    }

    .privacy-policy-container h3 {
        font-size: 1.3em;
    }
}