/* 
  Estilo Premium - Minimalismo Terapêutico
  Marcella Dell'Isolla
*/

:root {
    /* Paleta de Cores */
    --color-bg: #F7F3EE;
    /* Bege/Creme claro (Fundo principal) */
    --color-white: #FFFFFF;
    --color-primary: #A5A58D;
    /* Verde Sálvia (Botões, destaques suaves) */
    --color-primary-dark: #8F8F75;
    /* Sálvia Escuro para hover */
    --color-secondary: #9C7C5A;
    /* Terracota/Marrom suave (Títulos, acentos) */
    --color-text: #4A4A4A;
    /* Chumbo (Texto geral para leitura confortável) */
    --color-text-light: #707070;

    /* Tipografia */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Espaçamentos e Sombras */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.03);
    --border-radius-pill: 50px;
    --border-radius-card: 20px;
    --border-radius-organic: 50% 50% 0 0;
    /* Arco orgânico */
}

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

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

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.7;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    font-weight: 400;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Classes */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

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

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    text-align: center;
    transition: all 0.4s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(165, 165, 141, 0.3);
}

.btn-hero {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
}

.btn-hero:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--color-white);
}

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

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

/* Header */
.header {
    background-color: rgba(247, 243, 238, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-secondary);
    font-weight: 600;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav a:not(.btn) {
    font-size: 0.95rem;
    color: var(--color-text);
    font-weight: 400;
}

.nav a:not(.btn):hover {
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding-bottom: 150px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    transform: scale(1.15);
    opacity: 1;
}

/* Wave Divider */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-content {
    display: block;
    width: 100%;
    z-index: 1;
}

.hero-text-box {
    position: absolute;
    bottom: 90px;
    right: 3%;
    text-align: right;
    padding: 0;
    max-width: 450px;
}

.hero-text-box .subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-bg);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-text-box h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    font-style: italic;
}

.hero-author {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-bg);
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-btn-center {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Intro Section */
.intro {
    background-color: var(--color-bg);
    padding: 80px 0 40px;
}

.intro-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--color-primary);
    margin-bottom: 30px;
}

.intro-container p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.signature {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-top: 40px;
    font-style: italic;
}

/* Services / Expertise */
.services {
    background-color: var(--color-white);
}

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

.service-card {
    background-color: var(--color-bg);
    padding: 50px 40px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.service-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    margin-bottom: 30px;
}

.organic-img {
    border-radius: var(--border-radius-organic);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.organic-alt {
    border-radius: 150px 150px 150px 0;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.organic-img-3 {
    border-radius: 150px 150px 0 150px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.organic-img-4 {
    border-radius: 0 150px 150px 150px;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.service-card h3 span {
    display: block;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--color-primary);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 1rem;
    text-align: justify;
}

/* Atendimento Online / Benefits Section */
.atendimento {
    background: radial-gradient(circle at center, #FFFFFF 0%, var(--color-bg) 100%);
    padding: 100px 0;
}

.benefits-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.benefits-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.benefits-left {
    text-align: right;
}

.benefits-right {
    text-align: left;
}

.benefit-item h3 {
    font-size: 1.8rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.benefit-item p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

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

.leaf-left {
    width: 250px;
    height: 380px;
    object-fit: cover;
    border-radius: 150px 0 150px 150px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.leaf-right {
    width: 180px;
    height: 280px;
    object-fit: cover;
    border-radius: 0 150px 150px 150px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 80px;
}

/* Atendimento Presencial */
.presencial-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 20px;
}

.presencial-image-wrapper {
    flex: 1;
}

.presencial-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 20px 200px 20px 200px;
    box-shadow: var(--shadow-soft);
}

.presencial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.presencial-item {
    padding: 30px 0;
    border-bottom: 1px solid rgba(156, 124, 90, 0.2);
}

.presencial-item:first-child {
    padding-top: 0;
}

.presencial-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.presencial-item h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.presencial-item p {
    font-size: 1.05rem;
    color: var(--color-text);
    line-height: 1.6;
}

/* About Section */
.about {
    background-color: var(--color-bg);
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.organic-img-about {
    border-radius: 50% 50% 50% 0;
    /* Different organic shape */
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.about-content {
    flex: 1;
}

.about-content .subtitle {
    display: block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--color-secondary);
}

.about-content p {
    margin-bottom: 15px;
    text-align: justify;
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-info {
    max-width: 600px;
    margin: 0 auto 60px;
}

.footer-info h2 {
    color: var(--color-white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-text-box h1 {
        font-size: 1.8rem;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .presencial-layout {
        flex-direction: column;
    }

    .presencial-image {
        height: 400px;
        border-radius: 20px 100px 20px 100px;
    }

    .benefits-layout {
        flex-direction: column;
    }

    .benefits-left, .benefits-right {
        text-align: center;
    }

    .benefits-col {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    .nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .nav a:not(.btn) {
        font-size: 0.85rem;
        padding: 5px;
    }

    .nav .btn {
        width: 100%;
        margin-top: 5px;
        padding: 12px 0;
    }

    .hero {
        padding-top: 160px;
        align-items: center;
        padding-bottom: 120px;
    }

    .hero-text-box {
        position: relative;
        bottom: auto;
        right: auto;
        text-align: center;
        padding: 0 15px;
        max-width: 100%;
        margin-bottom: 60px;
    }

    .hero-text-box h1 {
        font-size: 1.5rem;
    }

    .benefits-center {
        flex-direction: column;
        gap: 20px;
    }

    .leaf-left, .leaf-right {
        width: 100%;
        max-width: 300px;
        height: 300px;
        object-fit: cover;
        border-radius: 20px 100px 20px 100px;
        margin: 0 auto;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .footer-info h2 {
        font-size: 2.2rem;
    }

    .section {
        padding: 60px 0;
    }
}