/* ==========================================================================
   1. RESET E VARIÁVEIS GLOBAIS
   ========================================================================== */
:root {
    --primary-blue: #004376; /* Cor aproximada do header na sua imagem */
    --accent-orange: #ff8300; /* Cor da Logo */
    --text-white: #ffffff;
    --font-main: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: #f4f4f4;
}

/* Container para centralizar conteúdo */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   2. HEADER E NAVEGAÇÃO
   ========================================================================== */
.main-header {
    background-color: var(--primary-blue);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.logo-img {
    max-width: 250px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
    margin-top: 5px;
}

.nav-list li {
    display: flex;
    align-items: center; 
}

.nav-list li:not(:last-child)::after {
    content: "|";
    color: var(--text-white);
    margin-left: 20px;
    font-size: 0.85rem;
    opacity: 0.5;
}

.nav-list a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-list a:hover, 
.nav-list a.active {
    color: var(--accent-orange);
}

.contact-area {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-contact {
    color: var(--primary-blue);
    background-color: var(--text-white);
    padding: 5px 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 8px;
    transition: var(--transition-smooth);
}

.btn-contact:hover {
    background-color: var(--accent-orange);
    color: var(--text-white);
}

.btn-contact.active-btn {
    background-color: var(--accent-orange);
    color: var(--text-white);
}

.sub-links {
    list-style: none;
}

.sub-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.7rem;
    display: block;
    line-height: 1.4;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.sub-links a:hover {
    opacity: 1;
    color: var(--accent-orange);
}

.mobile-menu-btn {
    display: none;
}

/* ==========================================================================
   3. HERO SECTION (CARROSSEL)
   ========================================================================== */
.hero-section {
    position: relative;
    height: 80vh; /* Ocupa 80% da altura da tela */
    min-height: 600px;
    overflow: hidden;
    background-color: #222;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out; /* Transição suave de UX */
    display: flex;
    align-items: center; /* Centraliza verticalmente o texto */
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
}

/* Película escura para garantir leitura do texto, mesmo com fotos claras */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2; /* Fica acima da película */
    color: var(--text-white);
}

.welcome-text {
    font-size: 1.2rem;
    letter-spacing: 5px;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.slide-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); /* Sombra para UX de leitura */
}

/* Indicadores (Barrinhas brancas no fundo) */
.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 15px;
}

.dot {
    width: 40px;
    height: 5px;
    background-color: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active, .dot:hover {
    background-color: var(--text-white);
}

/* ==========================================================================
   4. SESSÃO CHECKERBOARD (MISSÃO, SERVIÇOS E EQUIPE)
   ========================================================================== */
.split-layout-section {
    width: 100%;
    background-color: var(--text-white);
}

.split-row {
    display: flex;
    flex-direction: row; /* Padrão: Texto na Esquerda, Imagem na Direita */
    width: 100%;
    min-height: 600px;
}

/* A CLASSE MÁGICA: Inverte a ordem no Desktop (Imagem Esquerda, Texto Direita) */
.split-row.reverse-row {
    flex-direction: row-reverse;
}

.split-content {
    flex: 0 0 50%;
    max-width: 50%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-block {
    position: relative;
    overflow: hidden; 
    min-height: 400px; 
}

.img-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1);
    will-change: transform; 
}

.text-block {
    padding: 60px 10%; /* Espaçamento interno chique */
}

.text-inner {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

/* Alinhamentos Específicos do Design */
.align-right-headers .subtitle,
.align-right-headers .title,
.align-right-headers .btn-outline-right {
    text-align: right;
    display: block;
}

.subtitle {
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.title {
    color: var(--primary-blue);
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.text-paragraphs p {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Botões com borda (Outline) */
.btn-outline-right, .btn-outline-left {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-outline-right { float: right; }
.btn-outline-left { float: left; }

.btn-outline-right:hover, .btn-outline-left:hover {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

/* --- TABS (O QUE OFERECEMOS) --- */
.services-tabs {
    margin-bottom: 30px;
}

.tabs-header {
    display: flex;
    border: 1px solid #ccc;
    border-bottom: none;
}

.tab-btn {
    flex: 1;
    background: transparent;
    border: none;
    border-right: 1px solid #ccc;
    padding: 12px 5px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 0.75rem;
    color: #888;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:last-child { border-right: none; }

.tab-btn.active {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

.tabs-body {
    border: 1px solid var(--primary-blue);
    padding: 30px 20px;
    min-height: 150px;
}

.tab-content {
    display: none; /* Esconde todas as abas inicialmente */
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block; /* Mostra apenas a ativa */
}

.tab-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   5. INSPIRATION GALLERY
   ========================================================================== */
.inspiration-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.text-center {
    text-align: center;
}

.section-title {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 50px;
    letter-spacing: 4px; /* Espaçamento maravilhoso nas letras */
}

/* O Segredo do Layout Colado Sênior */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Divide em 4 fatias perfeitamente iguais */
    width: 100%;
}

.gallery-item {
    position: relative;
    overflow: hidden; /* Esconde o excesso da imagem quando fizermos o zoom */
    aspect-ratio: 3/4; /* Mantém um formato de "Retrato" elegante */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Faz a imagem preencher o espaço sem distorcer */
    transition: transform 0.6s ease; /* Transição suave de navegação */
}

/* Hover Sênior (Passar o Mouse) */
.gallery-item:hover img {
    transform: scale(1.1); /* Zoom in de 10% */
}

/* Película Azul que aparece no Hover */
.gallery-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 67, 118, 0.7); /* Azul primário com transparência */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Escondido por padrão */
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1; /* Revela a película */
}

.gallery-overlay span {
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transform: translateY(20px); /* Começa um pouco para baixo */
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0); /* Sobe suavemente para o centro */
}

/* Espaçamento e Botão Centralizado */
.mt-4 {
    margin-top: 50px;
}

.btn-outline-center {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-outline-center:hover {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

/* ==========================================================================
   6. CUSTOMER REVIEWS
   ========================================================================== */
.reviews-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px; /* Espaçamento fino entre as imagens */
    width: 100%;
    padding: 0 15px; /* Para não colar totalmente na beirada da tela */
}

.review-card {
    position: relative;
    aspect-ratio: 3/4; /* Mantém a proporção vertical (retangular) */
    background-size: cover;
    background-position: center;
    border-bottom: 6px solid var(--accent-orange); /* A borda laranja no fundo */
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

/* Transição Sênior: O card levanta suavemente ao passar o mouse */
.review-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* O Gradiente que vem de baixo para cima */
.review-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 67, 118, 0.95) 0%, rgba(0, 67, 118, 0.6) 40%, rgba(0, 67, 118, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Joga o texto para o fundo */
    padding: 30px 20px;
    color: var(--text-white);
}

.quote-icon {
    color: var(--accent-orange);
    font-size: 4.5rem;
    font-family: Georgia, serif; /* Fonte clássica para fazer as aspas bonitas */
    line-height: 0;
    margin-bottom: 25px; /* Espaço por causa do tamanho gigante da aspa */
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.95;
}

/* ==========================================================================
   7. INSTAGRAM SECTION
   ========================================================================== */
.instagram-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 15px;
}

.ig-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: #eef1f4; /* Cor cinza clara do rodapé da postagem */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ig-card:hover {
    transform: translateY(-5px); /* Efeito flutuante suave */
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.ig-image {
    width: 100%;
    aspect-ratio: 4/5; /* Formato de retrato clássico do Instagram */
    background-size: cover;
    background-position: center;
}

.ig-footer {
    display: flex;
    align-items: center;
    height: 50px;
}

.ig-brand-icon {
    background-color: var(--primary-blue);
    width: 50px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ig-brand-icon img {
    width: 25px; /* Tamanho do ícone do tatu */
    height: auto;
}

.ig-handle {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding-left: 15px; /* Afasta o texto do quadrado azul */
}

/* ==========================================================================
   8. FOOTER - PARTE 1 (NEWSLETTER E CONTACT TOP)
   ========================================================================== */
.main-footer {
    background-color: #2b486a;
    color: var(--text-white);
    padding: 70px 0 0 0;
    font-family: var(--font-main);
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.mt-large {
    margin-top: 70px; /* Dá aquele respiro entre a newsletter e o contato */
}

.footer-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.newsletter-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 750px;
    margin: 0 auto 30px auto;
}

.newsletter-desc strong {
    opacity: 1;
}

/* --- FORMULÁRIO DE NEWSLETTER --- */
.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    text-align: left; /* Mantém a label EMAIL alinhada à esquerda da caixa */
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.input-row {
    display: flex;
    height: 45px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.input-row input {
    flex: 1;
    padding: 0 15px;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #333;
    transition: var(--transition-smooth);
}

.input-row input:focus {
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.btn-send {
    background-color: var(--accent-orange);
    color: var(--text-white);
    border: none;
    padding: 0 30px;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-send:hover {
    background-color: #d16b00;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 40px;
}

.badge {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-align: left;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 2px;
}

.badge p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* --- PARTE 3: CONTACT GRID --- */
.footer-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr; /* 4 colunas proporcionais */
    gap: 30px;
    margin-top: 60px;
    margin-bottom: 60px;
    align-items: start;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.col-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--text-white);
}

.col-list {
    list-style: none;
    padding: 0;
}

.col-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 600; /* Letra mais gordinha igual ao design */
}

.col-list a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.col-list a:hover {
    color: var(--accent-orange);
    transform: translateX(5px); /* Efeito Sênior: o texto desliza suavemente para a direita ao passar o mouse */
    display: inline-block;
}

.icon-orange {
    color: var(--accent-orange);
    width: 18px; /* Tamanho padronizado para todos os ícones */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin-top: 2px;
}

.icon-orange svg {
    width: 100%;
    height: auto;
}

.mt-3 {
    margin-top: 15px;
}

/* --- PARTE 4: COMMUNITY + MISSION --- */
.footer-community {
    padding: 40px 0 60px 0;
    border-top: 1px solid rgba(255,255,255,0.1); /* Uma linha super sutil para separar as sessões */
}

.community-text {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

.underline-link {
    color: var(--text-white);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.underline-link:hover {
    color: var(--accent-orange);
}

/* --- PARTE 5: BOTTOM LINKS --- */
.footer-bottom {
    padding-bottom: 40px;
}

.bottom-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
}

.bottom-links a {
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.bottom-links a:hover {
    color: var(--accent-orange);
}

.bg-white-link {
    background-color: var(--text-white);
    color: var(--primary-blue) !important;
    padding: 5px 15px;
    transition: var(--transition-smooth);
}

.bg-white-link:hover {
    background-color: var(--accent-orange);
    color: var(--text-white) !important;
}

.sub-bottom-links {
    font-size: 0.7rem; /* Letras de Privacidade e Termos um pouco menores */
    opacity: 0.8;
}

.divider {
    opacity: 0.5;
}

/* --- PARTE 6: COPYRIGHT (BARRA LARANJA) --- */
.footer-copyright {
    background-color: var(--accent-orange);
    padding: 25px 0;
    color: var(--text-white);
    font-family: var(--font-main);
    font-size: 0.75rem;
}

.copyright-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-left {
    text-align: left;
    line-height: 1.6;
    font-weight: 500;
}

.copyright-right {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.heart {
    color: var(--text-white); /* Coração branquinho */
    font-size: 1rem;
}

.agency-link {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.agency-link:hover {
    transform: scale(1.05); 
}

.agency-logo {
    height: 22px;
    width: auto;
}

/* ==========================================================================
   9.1 ABOUT PAGE
   ========================================================================== */

/* --- Título da Página --- */
.page-title-section {
    padding: 50px 0 30px 0;
    background-color: var(--text-white);
}

.page-title {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 8px; /* Espaçamento idêntico ao do design */
    margin: 0;
}

/* --- Banner com Transição Sutil --- */
.about-hero-banner {
    width: 100%;
    height: 55vh; /* Ocupa 55% da altura da tela */
    min-height: 400px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* EFEITO SÊNIOR: Efeito Parallax suave na rolagem */
}

/* --- Texto Introdutório Laranja --- */
.about-intro-section {
    padding: 80px 20px;
    background-color: var(--text-white);
}

.about-intro-text {
    color: var(--accent-orange);
    font-size: 1.5rem; /* Letra grande e em destaque */
    font-weight: 600;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    /* No design a fonte parece um pouco arredondada, mas vamos manter a Montserrat 
       para elegância, usando um peso médio para ficar legível e profissional. */
}

/* ==========================================================================
   9.2 ABOUT PAGE (THE BEGINNING & OUR TEAM)
   ========================================================================== */
.about-split-title {
    color: var(--primary-blue);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

/* Aproveitando a classe da Home para alinhar o OUR TEAM à direita */
.align-right-headers .about-split-title {
    text-align: right;
    display: block;
}

/* Estilo elegante para o link de email */
.text-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.text-link:hover {
    color: var(--accent-orange);
}

/* ==========================================================================
   9.3 ABOUT PAGE (LEADERSHIP)
   ========================================================================== */
.leadership-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto; /* Centraliza o grid dentro do container */
}

.leadership-card {
    position: relative;
    aspect-ratio: 3/4;
    background-size: cover;
    background-position: center top; /* Foca mais no rosto da pessoa */
    border-bottom: 6px solid var(--accent-orange);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.leadership-card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* O Gradiente que escurece o fundo para o nome ficar legível */
.leadership-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; /* O gradiente ocupa só a metade de baixo */
    background: linear-gradient(to top, rgba(0, 67, 118, 0.95) 0%, rgba(0, 67, 118, 0.6) 40%, rgba(0, 67, 118, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 25px;
    text-align: left;
}

.leadership-name {
    color: var(--text-white);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.leadership-role {
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

/* ==========================================================================
   9.4 ABOUT PAGE (OUR VALUES)
   ========================================================================== */
.values-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.values-box {
    max-width: 900px;
    margin: 0 auto; /* Centraliza a caixa na tela */
    padding: 60px 80px; 
    border: 3px solid var(--accent-orange); 
    background-color: var(--text-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Transição: Caixa levanta e ganha um "glow" sutil laranja ao passar o mouse */
.values-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 131, 0, 0.1); 
}

.values-title {
    color: var(--accent-orange);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 6px;
    text-align: center;
    margin-bottom: 30px;
}

.values-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    text-align: center;
    margin-bottom: 40px;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.value-item {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    text-align: left;
}

.value-item strong {
    color: #222;
    font-weight: 700;
}

/* ==========================================================================
   9.5 ABOUT PAGE EXCLUSIVE FOOTER (EMAIL & MAPS)
   ========================================================================== */
.footer-email-section {
    padding: 50px 0 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1); /* Linha divisória sutil acima */
    margin-bottom: 50px;
}

.email-icon {
    width: 50px;
    height: auto;
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 40px;
}

.email-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Divide meio a meio perfeitamente */
    gap: 40px;
    align-items: stretch; /* Faz as colunas terem a mesma altura */
}

.about-contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group-alt label {
    display: block;
    color: var(--text-white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.form-group-alt input,
.form-group-alt textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    outline: none;
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #333;
    transition: var(--transition-smooth);
}

.form-group-alt input:focus,
.form-group-alt textarea:focus {
    box-shadow: inset 0 0 8px rgba(0,0,0,0.3); /* Transição de profundidade ao digitar */
}

.btn-outline-white {
    align-self: flex-end; /* Joga o botão para o canto direito como no design */
    background: transparent;
    color: var(--text-white);
    border: 1px solid var(--text-white);
    padding: 10px 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 10px;
}

.btn-outline-white:hover {
    background: var(--text-white);
    color: var(--primary-blue);
}

.email-map-col {
    width: 100%;
    min-height: 350px;
}

.email-map-col iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 4px; /* Uma leve suavizada nas quinas do mapa */
    box-shadow: 0 5px 15px rgba(0,0,0,0.2); /* Sombra elegante no mapa */
}

/* ==========================================================================
   10. SERVICES PAGE
   ========================================================================== */
.services-list-section {
    padding: 40px 0 100px 0;
    background-color: var(--text-white);
}

.service-row {
    display: flex;
    align-items: center; /* Centraliza a imagem e o texto verticalmente */
    justify-content: space-between;
    gap: 80px; /* Um belo espaço entre a imagem e o texto */
    margin-bottom: 100px; /* Distância entre uma fileira e outra */
}

/* O Segredo do Zigue-Zague no Desktop */
.service-row.reverse {
    flex-direction: row-reverse;
}

/* Remove a margem da última linha para não sobrar espaço morto antes do footer */
.service-row:last-child {
    margin-bottom: 0;
}

.service-img-col {
    flex: 1;
    max-width: 50%;
}

.service-img-col img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease, box-shadow 0.5s ease; /* Transições suaves */
}

/* Transição Premium: A imagem toda (com o fundo laranja embutido nela) flutua */
.service-img-col img:hover {
    transform: translateY(-8px);
}

.service-text-col {
    flex: 1;
    max-width: 50%;
}

.service-title {
    color: var(--primary-blue);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.service-desc {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Botão Específico do Serviço (Clean e direto) */
.btn-service {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    transition: var(--transition-smooth);
}

.btn-service:hover {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

/* ==========================================================================
   10.2 SERVICES PAGE (AREAS WE SERVE)
   ========================================================================== */
.areas-serve-section {
    padding: 0 0 100px 0; /* Dá um respiro legal para chegar no rodapé */
    background-color: var(--text-white);
}

.areas-box {
    max-width: 800px;
    margin: 0 auto;
    border: 5px solid var(--accent-orange); /* Borda laranja grossa */
    background-color: var(--text-white);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Efeito Sênior: Caixa levanta suavemente com um brilho laranja */
.areas-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 131, 0, 0.15);
}

.areas-header {
    background-color: var(--accent-orange);
    padding: 25px 20px;
}

.areas-title {
    color: var(--primary-blue); /* Título azul em cima do fundo laranja */
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 6px;
    margin: 0;
}

.areas-content {
    padding: 40px 60px;
    display: flex;
    justify-content: center;
    gap: 80px; /* Distância entre a coluna esquerda e a coluna direita */
}

.areas-list {
    text-align: left;
    font-size: 1.1rem;
    line-height: 2; /* Espaçamento confortável entre os itens */
    color: #444;
    padding-left: 20px; /* Espaço para as bolinhas não sumirem */
}

.areas-list li {
    margin-bottom: 5px;
}

/* --- Texto Inferior e Botão --- */
.areas-footer-text {
    margin-top: 40px;
}

.areas-footer-text p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.areas-footer-text strong {
    color: #222;
}

.btn-outline-blue {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.btn-outline-blue:hover {
    background-color: var(--primary-blue);
    color: var(--text-white);
}

/* ==========================================================================
   10.3 SERVICES PAGE (PORTFOLIO PREVIEW)
   ========================================================================== */
.services-portfolio-section {
    padding: 0 0 50px 0;
    background-color: var(--text-white);
}

.portfolio-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    width: 100%;
}

/* ==========================================================================
   11. PORTFOLIO PAGE
   ========================================================================== */
.portfolio-intro-section {
    padding: 10px 0 60px 0;
    background-color: var(--text-white);
}

.portfolio-intro-text {
    color: var(--accent-orange);
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 30px;
}

.portfolio-albums-section {
    padding: 0 0 100px 0;
    background-color: var(--text-white);
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 40px;
    max-width: 900px; 
    margin: 0 auto;
}

.album-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    background-color: var(--primary-blue);
    border-bottom: 6px solid var(--accent-orange);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.album-img {
    width: 100%;
    aspect-ratio: 4/5; 
    background-size: cover;
    background-position: center;
}

.album-info {
    padding: 25px 30px;
    text-align: left;
}

.album-title {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 4px;
    margin: 0;
    text-transform: uppercase;
    text-decoration: underline; 
    text-underline-offset: 6px; 
    text-decoration-thickness: 2px;
}

/* ==========================================================================
   12. CONTACT PAGE
   ========================================================================== */

/* --- 12.1 CONTACT HERO SLIDER --- */
.contact-hero {
    /* Mantém a altura do slider da home, mas se quiser pode alterar aqui no futuro */
}

.contact-slide-content {
    text-align: left;
    margin-top: 50px; 
}

.contact-hero-title {
    color: var(--text-white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
    text-transform: uppercase;
}

.contact-hero-desc {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: 1px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.8);
    max-width: 700px;
}

/* ==========================================================================
   12.2 CONTACT PAGE (EMAIL FORM)
   ========================================================================== */
.contact-form-section {
    background-color: #2b486a;
    padding: 80px 0;
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-section-title {
    color: var(--text-white);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin-bottom: 40px;
    text-align: left;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colunas perfeitas */
    gap: 30px; /* Distância entre os campos */
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label,
.services-main-label {
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 2px solid transparent;
    border-radius: 2px;
    background-color: var(--text-white);
    font-family: var(--font-main);
    font-size: 0.95rem;
    color: #333;
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(255, 131, 0, 0.3);
}

/* Área dos Checkboxes */
.form-services-area {
    margin-top: 10px;
    margin-bottom: 30px;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas de serviços */
    gap: 15px;
    margin-top: 15px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.checkbox-item:hover {
    color: var(--accent-orange);
}

.checkbox-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--accent-orange);
    cursor: pointer;
}

.mt-3 {
    margin-top: 20px;
}

.form-submit-area {
    margin-top: 40px;
    text-align: center;
}

.btn-send-outline {
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 12px 40px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-send-outline:hover {
    background-color: var(--text-white);
    color: #2b486a;
}

/* ==========================================================================
   12.4 CONTACT PAGE (FAQ ACCORDION)
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background-color: var(--text-white);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Espaço entre as perguntas */
}

.faq-item {
    border: 2px solid var(--primary-blue);
    background-color: var(--text-white);
    transition: border-color 0.3s ease;
}

.faq-item.active {
    border-color: var(--accent-orange);
}

.faq-header {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary-blue);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: var(--font-main);
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-item.active .faq-header {
    background-color: var(--accent-orange);
    color: var(--text-white);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.4s ease; 
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease;
}

.faq-item.active .faq-body-wrapper {
    grid-template-rows: 1fr;
}

.faq-body {
    overflow: hidden; 
    padding: 0 25px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
}

.faq-item.active .faq-body {
    padding: 20px 25px; 
}

.faq-footer-text p {
    font-size: 1.1rem;
    color: #555;
    margin-top: 20px;
}

.faq-footer-text strong {
    color: #222;
}

/* ==========================================================================
   13. LEGAL PAGES (PRIVACY & TERMS)
   ========================================================================== */
.legal-content-section {
    padding: 0 0 100px 0;
    background-color: var(--text-white);
}

.legal-document-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 80px;
    border-top: 6px solid var(--accent-orange);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08); 
    border-radius: 4px;
    animation: slideUpFade 0.6s ease-out forwards; 
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.legal-h2 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 45px 0 20px 0;
    text-transform: uppercase;
}

.legal-p {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify; 
}

.legal-ul {
    list-style-type: square;
    color: var(--accent-orange);
    padding-left: 20px;
    margin-bottom: 25px;
}

.legal-ul li {
    margin-bottom: 12px;
}

.legal-ul li span {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.legal-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.legal-link:hover {
    color: var(--accent-orange);
}

/* ==========================================================================
   14. PRELOADER (TELA DE CARREGAMENTO)
   ========================================================================== */
#senior-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-blue);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#senior-preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.preloader-icon {
    width: 70px;
    height: auto;
    animation: pulseIcon 1.5s infinite ease-in-out; 
}

@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 15px rgba(255, 131, 0, 0.6)); }
    100% { transform: scale(1); opacity: 0.8; }
}

.loading-bar-container {
    width: 180px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    width: 0%;
    height: 100%;
    background-color: var(--accent-orange);
    border-radius: 2px;
    animation: loadingProgress 1s cubic-bezier(0.7, 0, 0.3, 1) forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    50% { width: 60%; }
    100% { width: 100%; }
}

/* ==========================================================================
   ALERTAS DO FORMULÁRIO DE CONTATO
   ========================================================================== */
.site-alert-success, .site-alert-error {
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.site-alert-success {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid #10b981;
}

.site-alert-error {
    background-color: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid #ef4444;
}

/* ==========================================================================
   FINAL DO ARQUIVO - RESPONSIVIDADE (MOBILE UX)
   ========================================================================== */
@media (max-width: 992px) {
    
    /* --- Menu Mobile Dropdown Animado --- */
    .main-nav { 
        display: none; 
        position: absolute;
        top: 100%; /* Joga o menu para baixo do header azul */
        left: 0;
        width: 100%;
        background-color: var(--primary-blue);
        padding: 30px 20px;
        box-shadow: 0 15px 20px rgba(0,0,0,0.2);
        flex-direction: column;
        align-items: center; /* Centraliza os botões no celular */
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1); /* Linha sutil separando header do menu */
    }

    /* Classe ativada pelo JavaScript para abrir o menu */
    .main-nav.show {
        display: flex;
        animation: slideDownMenu 0.4s ease-out forwards;
    }

    @keyframes slideDownMenu {
        from { opacity: 0; transform: translateY(-15px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-list {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

    /* Tira as barras | no celular porque os itens estarão um embaixo do outro */
    .nav-list li:not(:last-child)::after {
        display: none; 
    }

    .contact-area {
        align-items: center; /* Centraliza a área de contato */
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-btn span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: var(--text-white);
        margin: 6px 0;
        transition: transform 0.3s ease, opacity 0.3s ease; /* Animação do botão X */
    }

    /* Animação do Botão Hamburguer virando um "X" */
    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- Restante da Responsividade (Intacta) --- */
    .slide-title { font-size: 2.5rem; }

    .split-row, .split-row.reverse-row {
        flex-direction: column;
    }
    
    .split-content {
        flex: 0 0 100%; 
        max-width: 100%;
    }

    .split-row .text-block, 
    .split-row.reverse-row .text-block {
        order: 1;
        padding: 50px 20px;
    }
    
    .split-row .img-block, 
    .split-row.reverse-row .img-block {
        order: 2;
        min-height: 350px;
    }
    
    .align-right-headers .subtitle,
    .align-right-headers .title {
        text-align: left; 
    }
    .btn-outline-right { float: none; display: inline-block; }
    
    .gallery-grid,
    .reviews-grid,
    .ig-grid,
    .footer-contact-grid,
    .portfolio-grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px; 
    }
    
    .footer-badges {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .badge {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .newsletter-desc {
        padding: 0 15px;
    }
    
    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    
    .col-list li {
        justify-content: center;
    }

    .col-list a:hover {
        transform: none;
    }

    .bottom-links {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .copyright-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .copyright-left {
        text-align: center;
    }
    
    .about-hero-banner {
        background-attachment: scroll; 
        height: 40vh;
        min-height: 250px;
    }

    .about-intro-text {
        font-size: 1.2rem;
        br { display: none; }
    }
    
    .page-title {
        font-size: 1.2rem;
        letter-spacing: 5px;
    }
    
    .align-right-headers .about-split-title {
        text-align: left;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    
    .values-box {
        padding: 40px 20px; 
    }

    .values-title {
        font-size: 1.2rem;
        letter-spacing: 3px;
    }
    
    .email-us-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .btn-outline-white {
        align-self: stretch;
        text-align: center;
    }
    
    .email-map-col iframe {
        min-height: 300px;
    }
    
    .service-row, 
    .service-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 80px;
        text-align: center; 
    }

    .service-img-col, 
    .service-text-col {
        max-width: 100%;
        width: 100%;
    }

    .service-text-col {
        padding: 0 10px;
    }
    
    .areas-content {
        flex-direction: column; 
        gap: 0;
        padding: 30px 20px;
        align-items: center;
    }
    
    .areas-list {
        width: max-content;
        margin: 0 auto;
    }

    .areas-title {
        font-size: 1.2rem;
        letter-spacing: 4px;
    }
    
    .portfolio-intro-text {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .portfolio-intro-text br {
        display: none; 
    }

    .albums-grid {
        gap: 20px;
        padding: 0 10px;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }

    .contact-hero-desc {
        font-size: 0.9rem;
    }

    .contact-hero-title br,
    .contact-hero-desc br {
        display: none; 
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-document-wrapper {
        padding: 40px 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .legal-p {
        text-align: left;
        font-size: 0.95rem;
    }

    .legal-h2 {
        font-size: 1.1rem;
        margin: 35px 0 15px 0;
    }
}

@media (max-width: 576px) {
    .gallery-grid,
    .reviews-grid,
    .ig-grid,
    .footer-contact-grid,
    .portfolio-grid-4,
    .albums-grid,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-document-wrapper {
        padding: 30px 15px;
    }
}