/* --- DEFINIÇÕES DE CORES E FONTES GLOBAIS --- */
/* Importação limpa e oficial das fontes do Google */
@import url('https://googleapis.com');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f4eee1;
}
/* O código de segurança para os textos entra exatamente aqui: */
p, h1, h2, h3, h4, span {
    overflow-wrap: break-word;
    word-break: break-word;
}
/* Segurança para as imagens se adaptarem ao tamanho da tela */
img {
    max-width: 100%;
    height: auto;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- HERO SECTION COM IMAGEM DE FUNDO MÍSTICA --- */
.hero-section {
    background-color: #120e0a;
    background-image: linear-gradient(rgba(18, 14, 10, 0.45), rgba(18, 14, 10, 0.55)), url('./fundo-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #f4eee1;
    padding: 80px 0;
    width: 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; 
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-image-container {
    grid-column: 2; 
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin-left: auto;
}

.brand-subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    letter-spacing: 4px;
    color: #c5a059;
    margin-bottom: 5px;
}

.brand-tag {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: #bfa38a;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 3.8rem;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 4px;
    margin-bottom: 25px;
    color: #f4eee1;
}

.hero-description-italic {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.4;
    color: #c5a059;
    text-transform: lowercase;
    margin-bottom: 30px;
}

.hero-description {
    font-size: 0.95rem;
    letter-spacing: 1px;
    line-height: 1.8;
    color: #eaddca;
    max-width: 500px;
}

.hero-pillars {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    padding-top: 25px;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #c5a059;
}

.hero-image {
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: center 15%;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(197, 160, 89, 0.3);
}

/* --- SEÇÃO MEUS ESPAÇOS DE ACOLHIMENTO --- */
.services-section {
    padding: 80px 0 120px 0;
    background-color: #eaddca;
    text-align: center;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    letter-spacing: 4px;
    margin-bottom: 50px;
    color: #4a3b32;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    background-color: #f4eee1;
    padding: 40px 25px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid transparent;
}

.card:hover {
    transform: translateY(-6px) scale(1.02) !important;
    border-color: rgba(197, 160, 89, 0.4);
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.15);
}

.card-icon {
    font-family: 'Material Symbols Outlined' !important;
    font-size: 2.4rem !important;
    color: #c5a059;
    margin-bottom: 20px;
    font-variant-ligatures: common-ligatures;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

.card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #2b221a;
}

.card p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #66554b;
    margin-bottom: 25px;
}

/* --- BOTÕES --- */
.btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 25px;
    transition: 0.3s;
    width: 100%;
}

.btn-gold {
    background-color: #8c2d19;
    color: #fff;
}

.btn-dark {
    background-color: #401006;
    color: #fff;
}

.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* --- SEÇÃO CITAÇÃO (JUNG) --- */
.quote-section {
    background-color: #120e0a;
    color: #f4eee1;
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid #2b221a;
}

.quote-text {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #eaddca;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author-name {
    font-size: 1.05rem;
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    display: inline-block;
    margin-left: 10px;
    color: #bfa38a;
}

.quote-author {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #c5a059;
    letter-spacing: 2px;
}

.quote-sub {
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: #8c7665;
    margin-top: 8px;
}

/* --- FOOTER WHATSAPP PROFISSIONAL --- */
.whatsapp-footer {
    background-color: #f4eee1;
    padding: 22px 0;
    border-top: 1px solid #e5dac4;
    width: 100%;
}

.footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.whatsapp-info-container {
    display: flex;
    align-items: center;
    gap: 18px;
}

.whatsapp-icon-circle {
    width: 52px;
    height: 52px;
    background-color: #401006;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.svg-whatsapp {
    width: 28px;
    height: 28px;
}

.whatsapp-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.whatsapp-text strong {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: #2b221a;
    font-weight: 400;
}

.vertical-divider {
    width: 1px;
    height: 25px;
    background-color: #d1c4ae;
}

.whatsapp-text p {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #66554b;
    text-transform: uppercase;
}

.btn-whatsapp {
    background-color: #401006;
    color: #fff;
    padding: 14px 45px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    transition: background-color 0.3s, transform 0.2s;
    flex-shrink: 0;
}

.btn-whatsapp:hover {
    background-color: #5c180a;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .footer-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .whatsapp-info-container {
        flex-direction: column;
        gap: 12px;
    }
    .whatsapp-text {
        flex-direction: column;
        gap: 8px;
    }
    .vertical-divider {
        width: 40px;
        height: 1px;
    }
    .btn-whatsapp {
        width: 100%;
        text-align: center;
    }
}

/* --- ESTILIZAÇÃO COMPLETA DA PÁGINA INTERNA (ATENDIMENTOS) --- */
.internal-body {
    background-color: #eaddca; 
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 0;
}

.internal-container-page {
    max-width: 720px;
    width: 100%;
}

.internal-card-content {
    background-color: #f4eee1; 
    padding: 60px 45px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(18, 14, 10, 0.05);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.svg-internal-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

/* LIMITADOR DE TAMANHO DA LUA SUPERIOR */
.svg-internal-main {
    width: 45px !important;
    height: 45px !important;
    max-width: 45px;
    color: #c5a059;
    display: block;
}

.internal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    color: #2b221a;
    margin-bottom: 5px;
}

.internal-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    color: #8c7665;
    text-transform: uppercase;
    margin-bottom: 35px;
}

.text-explanation {
    text-align: left;
    margin-bottom: 40px;
}

.text-explanation p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a3b32;
    margin-bottom: 20px;
}

.session-details {
    margin-top: 30px;
    background-color: rgba(197, 160, 89, 0.06);
    padding: 22px;
    border-radius: 4px;
    border-left: 3px solid #c5a059;
}

.session-details p {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    color: #2b221a;
}

.session-details p:last-child {
    margin-bottom: 0;
}

.svg-internal-detail {
    width: 18px !important;
    height: 18px !important;
    color: #c5a059;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
}

/* --- REGRAS DE FORMATAÇÃO DO TEXTO LONGO --- */
.highlight-text {
    font-size: 1.1rem !important;
    line-height: 1.7 !important;
    color: #401006 !important;
    font-weight: 600;
    margin-bottom: 25px !important;
}

.content-section-block {
    margin-top: 35px;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding-top: 25px;
}

.content-section-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: #2b221a;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.styled-therapy-list {
    list-style: none;
    padding-left: 0;
}

.styled-therapy-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a3b32;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.styled-therapy-list li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: #c5a059;
    font-size: 0.8rem;
}

.internal-conclusion-box {
    margin-top: 40px;
    padding: 25px;
    background-color: #120e0a;
    color: #eaddca;
    border-radius: 4px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.internal-conclusion-box p {
    font-family: 'Cinzel', serif;
    font-style: italic;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #f4eee1 !important;
    margin-bottom: 0 !important;
}

/* --- BOTÕES PREMIUM EM FORMATO PILL --- */
.internal-buttons-flex {
    display: flex;
    gap: 15px;
    justify-content: center;
    width: 100%;
    margin-top: 30px;
}

.btn-internal-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: transparent;
    color: #401006;
    border: 1px solid #401006;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    width: 38%;
}

.svg-btn-back {
    width: 14px !important;
    height: 14px !important;
    color: inherit;
    display: inline-block;
    vertical-align: middle;
}

.btn-internal-back:hover {
    background-color: #401006;
    color: #fff;
}

.btn-internal-action {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #8c2d19; 
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    border-radius: 30px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    width: 62%;
    text-align: center;
}

.btn-internal-action:hover {
    background-color: #401006;
    transform: translateY(-1px);
}

@media (max-width: 580px) {
    .internal-buttons-flex {
        flex-direction: column;
        gap: 12px;
    }
    .btn-internal-back, .btn-internal-action {
        width: 100%;
    }
}
/* --- COMPLEMENTO PARA A GALERIA DA OFICINA --- */
.gallery-placeholder-text {
    font-size: 0.9rem;
    font-style: italic;
    color: #8c7665;
    margin-top: 10px;
}

.oficina-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Divide em duas colunas de fotos */
    gap: 15px;
    margin-top: 20px;
}

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
    transition: transform 0.3s;
}

.gallery-img:hover {
    transform: scale(1.03);
}

@media (max-width: 480px) {
    .oficina-gallery-grid {
        grid-template-columns: 1fr; /* Vira uma única coluna no celular */
    }
}
/* --- BLOCO DE DESTAQUE DO ENCONTRO DE MOVIMENTOS --- */
.next-event-gold-box {
    background-color: #120e0a; /* Fundo escuro para contrastar na página off-white */
    color: #f4eee1;
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.next-event-gold-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: #c5a059; /* Título dourado místico */
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.event-important-alert {
    font-size: 0.8rem;
    color: #bfa38a;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.event-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Divide em 2 colunas organizadas */
    gap: 15px;
    margin-bottom: 20px;
}

.event-details-grid p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
    color: #eaddca !important;
}

.event-location {
    font-size: 0.9rem !important;
    border-top: 1px solid rgba(197, 160, 89, 0.15);
    padding-top: 15px;
    line-height: 1.6;
    color: #f4eee1 !important;
}

@media (max-width: 500px) {
    .event-details-grid {
        grid-template-columns: 1fr; /* Vira lista única no celular */
    }
}
/* --- REGULAGEM DOS NOVOS ÍCONES EM SVG DA PÁGINA INICIAL --- */
.svg-card-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 40px; /* Alinha na mesma altura dos outros ícones da fileira */
    margin-bottom: 20px;
}

.svg-card-icon {
    width: 38px !important;  /* Tamanho fino e proporcional */
    height: 38px !important;
    color: #c5a059;         /* Tom dourado místico do padrão */
    display: block;
}
/* --- CONFIGURAÇÃO EXCLUSIVA PARA OS CARDS DE ORÁCULO --- */
.oracle-highlight-card {
    background-color: rgba(197, 160, 89, 0.05);
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.2);
    margin: 20px 0;
}

.oracle-highlight-card h2 {
    text-align: center;
    margin-bottom: 15px !important;
}

.mandala-numbered-list {
    margin-top: 25px;
    padding-left: 0;
    list-style: none;
}

.mandala-numbered-list li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a3b32;
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

/* Cria números dourados com fontes clássicas antes de cada item */
.mandala-numbered-list li::before {
    content: counter(item) ".";
    counter-increment: item;
    position: absolute;
    left: 0;
    top: 0;
    font-family: 'Cinzel', serif;
    color: #c5a059;
    font-weight: 600;
}

.mandala-numbered-list {
    counter-reset: item;
}
/* --- CORREÇÕES PARA DISPOSITIVOS MÓVEIS (CELULAR) --- */
@media (max-width: 768px) {
    /* Ajustes gerais de espaçamento */
    .container {
        padding: 0 15px;
    }

    /* Transforma o Grid da Hero Section em uma coluna única */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* Move a imagem para a ordem correta no fluxo */
    .hero-image-container {
        grid-column: 1;
        margin: 0 auto;
        justify-content: center;
    }

    /* Reduz tamanhos de fontes muito grandes para não estourarem a tela */
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description-italic {
        font-size: 1.3rem;
    }

    .hero-description {
        margin: 0 auto;
    }

    /* Ajusta a lista de pilares para o celular */
    .hero-pillars {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    /* Ajusta a altura da imagem para não ficar gigante no celular */
    .hero-image {
        height: 350px;
    }

    /* Transforma os 3 cards de serviços em uma única coluna */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Ajusta o tamanho do texto da citação */
    .quote-text {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    /* Ajusta a página interna de atendimentos */
    .internal-card-content {
        padding: 40px 20px;
    }
}
