/* ==========================================================================
   DESIGN SYSTEM & RESET - ELIZABETE DIAS ESTÉTICA
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    /* Color Tokens (Contraste Validado WCAG) */
    --bg-light: #FDFBF7;
    --bg-alt: #F7F3EE;
    --brand: #BFA38F;
    --brand-dark: #8D7362;
    --brand-dark-hover: #765F50;
    --text-main: #3D332A;
    --text-muted: #6E6258;

    /* Typography Tokens */
    --font-title: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Layout Tokens */
    --max-width: 1140px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset Semântico Otimizado */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Utilitários de Acessibilidade (Bypass Block & Focus) */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only:focus {
    position: absolute;
    top: 16px;
    left: 16px;
    width: auto;
    height: auto;
    padding: 12px 24px;
    background-color: var(--brand-dark);
    color: #FFF;
    border-radius: 4px;
    z-index: 100;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Foco visível geral para acessibilidade de teclado (WCAG) */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--brand-dark);
    outline-offset: 4px;
}

/* ==========================================================================
   LAYOUT COMPONENTES GLOBAIS
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-dark);
    margin-bottom: 12px;
}

.font-serif {
    font-family: var(--font-title);
}

.italic-brand {
    font-family: var(--font-title);
    font-style: italic;
    color: var(--brand);
}

/* Botão Padrão de Conversão */
.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand);
    color: #FFFFFF;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(191, 163, 143, 0.15);
    transition: var(--transition);
    width: 100%;
}

@media (min-width: 640px) {
    .btn-cta {
        width: auto;
    }
}

.btn-cta:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(141, 115, 98, 0.25);
}

.btn-cta-dark {
    background-color: var(--brand-dark);
}

.btn-cta-dark:hover {
    background-color: var(--brand-dark-hover);
}

/* ==========================================================================
   CABEÇALHO
   ========================================================================== */

.main-header {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(141, 115, 98, 0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-title);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--text-main);
    transition: color 0.3s;
}

.logo:hover {
    color: var(--brand);
}

.main-nav {
    display: none;
}

@media (min-width: 768px) {
    .main-nav {
        display: flex;
        gap: 32px;
    }
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--brand);
}

/* ==========================================================================
   SEÇÃO HERO
   ========================================================================== */

.hero-section {
    padding: 64px 0;
    margin-top: 80px;
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 96px 0;
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
    }
}

.hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        text-align: left;
    }
}

.hero-title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 48px;
    }
}

.hero-desc {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
    max-width: 560px;
    margin: 0 auto 16px auto;
}

@media (min-width: 1024px) {
    .hero-desc {
        margin: 0 0 16px 0;
        font-size: 16px;
    }
}

.hero-image-area {
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-image-area {
        justify-content: flex-end;
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        max-width: 380px;
    }
}

.hero-avatar-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 180px 180px 0 0;
    background-color: #EAE3DC;
}

@media (min-width: 1024px) {
    .hero-avatar-placeholder {
        height: 480px;
    }
}

.decor-square {
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 48px;
    height: 32px;
    background-color: rgba(191, 163, 143, 0.6);
}

/* ==========================================================================
   SEÇÃO SERVIÇOS (CUIDADOS)
   ========================================================================== */

.services-section {
    padding: 64px 0;
    background-color: var(--bg-alt);
    border-radius: 40px 40px 0 0;
}

@media (min-width: 1024px) {
    .services-section {
        padding: 80px 0;
        border-radius: 60px 60px 0 0;
    }
}

.services-header {
    text-align: center;
    margin-bottom: 48px;
}

.services-title {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 12px;
}

@media (min-width: 1024px) {
    .services-title {
        font-size: 36px;
    }
}

.services-desc {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Card de Serviço Clicável */
.service-card {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 12px rgba(61, 51, 42, 0.02);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(191, 163, 143, 0.12);
}

.service-meta {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-right: 8px;
}

.service-name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 6px;
}

.service-description {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 12px;
}

.service-trigger {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s;
}

.service-card:hover .service-trigger {
    color: var(--brand-dark);
}

.service-thumbnail {
    width: 80px;
    height: 80px;
    background-color: var(--bg-light);
    border-radius: 24px 0 24px 24px;
    flex-shrink: 0;
    border: 1px solid rgba(141, 115, 98, 0.1);
}

/* ==========================================================================
   SEÇÃO CURSO AUTOMAQUIAGEM
   ========================================================================== */

.course-section {
    padding: 64px 0;
}

@media (min-width: 1024px) {
    .course-section {
        padding: 96px 0;
    }
}

.course-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .course-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 64px;
    }
}

.course-banner {
    width: 100%;
    height: 320px;
    background-color: #EAE3DC;
    border-radius: 0 0 120px 0;
}

@media (min-width: 1024px) {
    .course-banner {
        height: 400px;
        border-radius: 0 0 160px 0;
    }
}

.course-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .course-content {
        text-align: left;
    }
}

.course-title {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .course-title {
        font-size: 36px;
    }
}

.course-desc {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 24px;
}

.course-list {
    list-style: none;
    text-align: left;
    display: inline-block;
    margin-bottom: 32px;
}

.course-item {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.course-bullet {
    color: var(--brand);
    margin-right: 12px;
}

/* ==========================================================================
   SEÇÃO LOCALIZAÇÃO
   ========================================================================== */

.location-section {
    padding: 64px 0;
    background-color: #F5EFEA;
    border-radius: 0 0 40px 40px;
}

@media (min-width: 1024px) {
    .location-section {
        padding: 80px 0;
        border-radius: 0 0 60px 60px;
    }
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr 1.1fr;
        gap: 64px;
    }
}

.location-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .location-content {
        text-align: left;
    }
}

.location-title {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

@media (min-width: 1024px) {
    .location-title {
        font-size: 36px;
    }
}

.location-desc {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
    margin-bottom: 32px;
}

.info-group {
    margin-bottom: 24px;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.info-value {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 300;
}

/* Bloco Interativo do Mapa */
.map-card-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 288px;
    background-color: #E4DCD3;
    border-radius: 12px;
    text-decoration: none;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

@media (min-width: 1024px) {
    .map-card-trigger {
        height: 320px;
    }
}

.map-card-trigger:hover {
    background-color: #DDD5CC;
    box-shadow: 0 10px 25px rgba(61, 51, 42, 0.08);
}

.map-main-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-main);
}

.map-sub-text {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-dark);
    margin-top: 8px;
}

/* ==========================================================================
   SEÇÃO FINAL CTA & RODAPÉ CARD EM UNIDADE
   ========================================================================== */

.closing-section {
    padding: 64px 0;
    text-align: center;
}

.closing-title {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 500;
    display: inline-block;
    margin: 0 8px;
}

@media (min-width: 1024px) {
    .closing-title {
        font-size: 36px;
    }
}

.closing-desc {
    color: var(--text-muted);
    font-weight: 300;
    margin-top: 16px;
    margin-bottom: 32px;
    font-size: 15px;
}

.main-footer {
    background-color: var(--bg-light);
    padding-bottom: 32px;
    padding-top: 16px;
}

.footer-card {
    background-color: var(--brand-dark);
    border-radius: 24px;
    padding: 32px;
    color: #FFFFFF;
    box-shadow: 0 16px 32px rgba(141, 115, 98, 0.12);
}

@media (min-width: 768px) {
    .footer-card {
        padding: 48px;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr 1fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-brand {
        text-align: left;
    }
}

.footer-logo {
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 500;
}

.footer-brand-p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    max-width: 280px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .footer-brand-p {
        margin: 0;
    }
}

.social-container {
    display: flex;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .social-container {
        justify-content: flex-start;
    }
}

.social-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    transition: background-color 0.3s;
}

.social-pill:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.footer-col-title {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-col-title {
        text-align: left;
    }
}

/* Pílulas de Contato Internas (Estilo a Imagem de Referência) */
.contact-box-link {
    display: flex;
    align-items: center;
    background-color: #FFFFFF;
    padding: 14px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-main);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.contact-box-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-box-icon {
    flex-shrink: 0;
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.contact-box-icon-wp {
    text-shadow: none;
    color: #25D366;
}

.contact-box-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-box-main-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.contact-box-sub-text {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
    font-weight: 400;
}

/* Direitos Autorais Base */
.footer-meta-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .footer-meta-bar {
        flex-direction: row;
        justify-content: space-between;
    }
}