/* ==========================================================================
   Design System & Custom Properties (Elegant Rose Gold Institutional Version)
   ========================================================================== */
:root {
    --bg-light: #FAF8F5;
    --bg-alt: #F3EFE9;
    --bg-card: #FFFFFF;
    --rose-gold: #B76E79;
    --rose-gold-light: #E8D3D5;
    --rose-gold-gradient: linear-gradient(135deg, #E0B3B9 0%, #B76E79 50%, #914E58 100%);
    --text-color: #2E2A25;
    --text-muted: #7E756B;
    --white: #ffffff;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', Helvetica, Arial, sans-serif;
    --shadow-elegant: 0 15px 40px rgba(183, 110, 121, 0.08);
    --shadow-soft: 0 5px 15px rgba(0, 0, 0, 0.03);
    --border-radius: 8px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-light);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.2px;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 1px;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 400;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    text-align: center;
    font-weight: 400;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 500;
}

p {
    font-weight: 300;
    color: var(--text-muted);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.8;
}

.divider {
    width: 60px;
    height: 1.5px;
    background: var(--rose-gold-gradient);
    margin: 20px auto 0 auto;
}

.section-tag {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--rose-gold);
    margin-bottom: 12px;
    text-align: center;
    font-weight: 500;
}

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

.section-desc {
    max-width: 600px;
    margin: 15px auto 0 auto;
}

/* Buttons & UI Elements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--rose-gold-gradient);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(183, 110, 121, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(183, 110, 121, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--rose-gold);
    border: 1px solid var(--rose-gold);
}

.btn-outline:hover {
    background: var(--rose-gold);
    color: var(--white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 0.95rem;
}

/* Header */
.header {
    padding: 24px 0;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(183, 110, 121, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 4px;
    color: var(--rose-gold);
    font-weight: 600;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1;
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: var(--transition);
}

.nav-menu a:hover {
    color: var(--rose-gold);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 100px 0;
    background: radial-gradient(circle at right, #FBF8F6 0%, #F5EDE6 100%);
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(183, 110, 121, 0.06) 0%, rgba(250, 248, 245, 0) 70%);
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--rose-gold-light);
    color: var(--rose-gold);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--text-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-cta-hint {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-tag {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-gold);
    border-bottom: 1.5px solid var(--rose-gold-light);
    padding-bottom: 4px;
}

/* O Conceito Section (Sobre) */
.concept {
    padding: 100px 0;
    background: var(--white);
}

.concept-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.concept-text p {
    margin-bottom: 20px;
}

.concept-highlight {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--rose-gold);
}

.glow-box h3 {
    font-size: 1.6rem;
    margin: 15px 0 10px 0;
}

.glow-icon {
    font-size: 2rem;
    color: var(--rose-gold);
}

/* Galeria de Servicos */
.gallery {
    padding: 100px 0;
    background: var(--bg-alt);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.gallery-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(183, 110, 121, 0.04);
}

.gallery-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-elegant);
}

.card-image-holder {
    height: 200px;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.gallery-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.gallery-card p {
    font-size: 0.9rem;
}

.highlight-gallery-card {
    border: 1.5px solid var(--rose-gold);
    background: radial-gradient(circle at bottom right, #FFF 60%, var(--rose-gold-light) 100%);
}

/* Estrutura / Diferenciais (Timeline) */
.structure {
    padding: 100px 0;
    background: var(--white);
}

.structure-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}

.structure-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 15px;
    bottom: 10px;
    width: 1px;
    background-color: var(--rose-gold-light);
}

.timeline-step {
    position: relative;
    margin-bottom: 60px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: -40px;
    top: -5px;
    width: 31px;
    height: 31px;
    background: var(--rose-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-family: var(--font-body);
    font-weight: 600;
    box-shadow: 0 0 0 5px var(--white), 0 0 0 6px var(--rose-gold-light);
}

.step-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

/* A Fundadora (Mentor Section) */
.mentor {
    padding: 100px 0;
    background: var(--white);
}

.mentor-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.mentor-details p {
    margin-bottom: 20px;
}

.mentor-quote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--rose-gold);
    font-style: italic;
    border-left: 2px solid var(--rose-gold-light);
    padding-left: 24px;
    margin-top: 30px;
}

.mentor-visual {
    display: flex;
    justify-content: center;
}

.img-frame {
    padding: 15px;
    background: var(--bg-alt);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
}

.img-frame img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    display: block;
}

/* Agendamento & Contato */
.investment {
    padding: 100px 0;
    background: var(--bg-alt);
}

.investment-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 60px 40px;
    box-shadow: var(--shadow-elegant);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(183, 110, 121, 0.05);
}

.investment-intro {
    font-size: 1.05rem;
    margin: 12px auto 40px auto;
    max-width: 500px;
}

.pricing-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.price-block {
    flex: 1;
    min-width: 240px;
}

.price-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--rose-gold);
}

.price-val {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-color);
    margin: 10px 0;
}

.price-sub {
    font-size: 0.8rem;
}

.price-sep {
    width: 1px;
    height: 80px;
    background-color: var(--rose-gold-light);
}

.location-details {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 40px;
}

.location-details p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--bg-alt);
    border-top: 1px solid rgba(183, 110, 121, 0.08);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand p {
    font-size: 0.8rem;
    margin-top: 10px;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials a {
    color: var(--rose-gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: var(--text-color);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.2rem; }
    .nav-menu {
        display: none; /* Simplificado para telas menores */
    }
    .concept-grid, .mentor-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .price-sep {
        display: none;
    }
    .pricing-container {
        flex-direction: column;
    }
    .mentor-row .mentor-visual {
        order: -1;
    }
}
