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

body {
    background-color: var(--sand);
    color: var(--charcoal);
    font-family: 'Manrope', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Custom properties */
:root {
    --sand: #F2F2F2;
    --linen: #DEF2D5;
    --sage: #AABF9B;
    --olive: #5F6B73;
    --clay: #5F6B73;
    --terracotta: #BDDEF2;
    --gold-muted: #BDDEF2;
    --golden: #AABF9B;
    --charcoal: #5F6B73;
}

/* Textura artesanal suave (papel) */
.texture-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='1' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.35;
}

/* Layout base */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

/* Navegação discreta */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 3rem;
    transition: background 0.3s ease, padding 0.3s ease;
    background: transparent;
}

.site-header.scrolled {
    background: rgba(242, 242, 242, 0.92);
    backdrop-filter: blur(6px);
    padding: 0.8rem 3rem;
    border-bottom: 1px solid rgba(95, 107, 115, 0.15);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo na navbar */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo .lotus-svg {
    width: 36px;
    height: 30px;
    transition: opacity 0.2s;
}

.nav-logo-name {
    font-family: 'Marcellus', serif;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.5px;
    transition: color 0.3s;
    white-space: nowrap;
}

.site-header.scrolled .nav-logo-name {
    color: var(--olive);
}

.nav-logo:hover .lotus-svg {
    opacity: 0.8;
}

.nav-logo:hover .nav-logo-name {
    color: var(--golden);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-family: 'Forum', serif;
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.92);
    transition: color 0.2s;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--golden);
}

.site-header.scrolled .nav-links a {
    color: var(--olive);
}

.site-header.scrolled .nav-links a:hover {
    color: var(--golden);
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.92);
    cursor: pointer;
    transition: color 0.3s;
}

.site-header.scrolled .menu-toggle {
    color: var(--olive);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?q=80&w=2120&auto=format');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(95, 107, 115, 0.45), rgba(95, 107, 115, 0.55)), rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 1.5rem;
}

.hero-logo {
    font-family: 'Marcellus', serif;
    font-size: 2.8rem;
    letter-spacing: 4px;
    color: var(--linen);
    margin-bottom: 1.5rem;
    font-weight: 400;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.hero h1 {
    font-family: 'Marcellus', serif;
    font-size: 3rem;
    color: white;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.hero p {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--golden);
    padding: 0.9rem 2.2rem;
    font-family: 'Forum', serif;
    font-size: 1rem;
    letter-spacing: 2px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.btn-primary:hover {
    background: rgba(170, 191, 155, 0.15);
    border-color: var(--golden);
    letter-spacing: 3px;
}

/* Seções com respiro */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-family: 'Marcellus', serif;
    font-size: 2.3rem;
    font-weight: 400;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-top: 1em;
}

.section-title small {
    font-family: 'Cormorant Unicase', serif;
    font-size: 1rem;
    display: block;
    color: var(--olive);
    margin-top: 0.5rem;
    letter-spacing: 2px;
}

/* Filosofia (estilo página de livro) */
.book-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.book-text {
    flex: 1.2;
    background: var(--linen);
    padding: 2.5rem;
    border-left: 3px solid var(--gold-muted);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}

.book-text .quote {
    font-family: 'Cormorant Unicase', serif;
    font-size: 2rem;
    color: var(--clay);
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.book-text p {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.book-image {
    flex: 0.8;
}

.book-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    filter: grayscale(0.1) contrast(1.02);
}

/* Serviços - como capítulos (sem cards) */
.service-chapter {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 5rem;
    align-items: center;
    border-bottom: 1px solid rgba(95, 107, 115, 0.18);
    padding-bottom: 3rem;
}

.service-chapter.reverse {
    flex-direction: row-reverse;
}

.service-chapter:last-child {
    border-bottom: none;
}

.service-img {
    flex: 1;
    min-width: 260px;
}

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

.service-desc {
    flex: 1;
    padding: 0 1rem;
}

.service-desc h3 {
    font-family: 'Marcellus', serif;
    font-size: 1.7rem;
    margin-bottom: 0.75rem;
    color: var(--olive);
}

.service-desc p {
    margin: 1rem 0;
}

.benefits-list {
    list-style: none;
    margin: 1rem 0;
}

.benefits-list li {
    margin-bottom: 0.4rem;
    padding-left: 1.2rem;
    position: relative;
    font-size: 0.9rem;
}

.benefits-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--terracotta);
}

.btn-text {
    font-family: 'Forum', serif;
    text-decoration: none;
    color: var(--clay);
    border-bottom: 1px solid var(--gold-muted);
    padding-bottom: 2px;
    transition: 0.2s;
}

.btn-text:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

/* iframe responsivo */
.map-iframe {
    width: 100%;
    aspect-ratio: 4 / 3;
    border: 0;
    display: block;
    margin: 1rem 0;
}

/* Retiro (revista de viagem) */
.retiro-feature {
    background-color: var(--linen);
    padding: 3rem;
}

.travel-magazine {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.mag-image {
    flex: 1.2;
}

.mag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mag-info {
    flex: 1;
    padding: 1rem;
}

.mag-info h3 {
    font-family: 'Marcellus', serif;
    font-size: 2rem;
    color: var(--charcoal);
}

.retiro-dates {
    font-family: 'Cormorant Unicase', serif;
    background: var(--sand);
    display: inline-block;
    padding: 0.5rem 1.2rem;
    margin: 1rem 0;
    text-align: center;
}

.map-symbol {
    background: var(--linen);
    padding: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* Journal */
.journal-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.journal-entry {
    flex: 1;
    min-width: 260px;
}

.journal-entry img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.journal-category {
    font-family: 'Cormorant Unicase', serif;
    color: var(--clay);
    letter-spacing: 1px;
}

.journal-entry h4 {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

/* Galeria mosaico orgânico */
.organic-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 240px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

.gallery-item.tall {
    flex: 1 1 200px;
    min-height: 320px;
}

.gallery-item.wide {
    flex: 2 1 360px;
}

/* Depoimentos (cartas) */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--linen);
    padding: 2rem;
    position: relative;
    border-right: 2px solid var(--gold-muted);
    margin-bottom: 2em;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
}

.signature {
    margin-top: 1.5rem;
    font-family: 'Cormorant Unicase', serif;
    font-size: 1.2rem;
    text-align: right;
    color: var(--olive);
}

/* Contato */
.contact-section {
    background: rgba(189, 222, 242, 0.45);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.contact-form {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    background: var(--sand);
    border: 1px solid rgba(95, 107, 115, 0.25);
    font-family: 'Manrope', sans-serif;
}

.contact-info {
    flex: 1;
}

.whatsapp-highlight {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--sand);
    padding: 0.7rem 1.2rem;
    margin: 1rem 0;
    border-left: 3px solid var(--clay);
}

.floating-actions {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 250;
}

.floating-btn {
    width: 3.4rem;
    height: 3.4rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background 0.2s ease;
}

.floating-btn:hover {
    transform: translateY(-2px);
}

.top-btn {
    background: #ffffff;
    color: var(--charcoal);
    border: 1px solid rgba(95, 107, 115, 0.2);
}

.top-btn:hover {
    background: var(--sand);
}

.whatsapp-btn {
    background: #25D366;
    color: white;
}

.floating-btn [data-lucide] {
    width: 1.4rem;
    height: 1.4rem;
}

/* Rodapé */
footer {
    background: var(--linen);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}

.lotus-svg {
    width: 52px;
    height: 44px;
    flex-shrink: 0;
}

.footer-logo-name {
    font-family: 'Marcellus', serif;
    font-size: 1.3rem;
    color: var(--charcoal);
    line-height: 1.2;
}

.footer-tagline {
    font-family: 'Cormorant Unicase', serif;
    font-size: 0.85rem;
    color: var(--sage);
    letter-spacing: 2px;
}

.footer-nav h4,
.footer-social h4 {
    font-family: 'Marcellus', serif;
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-nav a {
    font-family: 'Forum', serif;
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.95rem;
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--terracotta);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.social-links a {
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 50%;
    border: 1px solid rgba(95, 107, 115, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.social-links a:hover {
    background: var(--golden);
    border-color: var(--golden);
    color: white;
}

.social-links [data-lucide] {
    width: 1.1rem;
    height: 1.1rem;
}

.footer-contact-hint {
    font-size: 0.82rem;
    color: var(--charcoal);
    opacity: 0.65;
    line-height: 1.5;
}

.footer-bottom {
    padding-bottom: 2rem;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: var(--charcoal);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-nav ul {
        align-items: center;
    }
}

@media (max-width: 900px) {
    .container {
        padding: 0 1.5rem;
    }

    .site-header {
        padding: 1rem 1.2rem;
    }

    .site-header.scrolled {
        padding: 0.7rem 1.2rem;
    }

    .nav-bar {
        justify-content: space-between;
        align-items: center;
    }

    .nav-logo-name {
        display: none;
    }

    .nav-logo .lotus-svg {
        width: 40px;
        height: 34px;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: 0;
    }

    .nav-links.active {
        display: flex !important;
        flex-direction: column;
        position: fixed !important;
        top: 0.8rem;
        left: 0.8rem;
        transform: none;
        background: var(--linen);
        padding: 1rem 2rem 1.5rem;
        gap: 1rem;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
        border-radius: 12px;
        min-width: 200px;
        z-index: 260;
        align-items: center;
        text-align: center;
        border-top: 3px solid var(--golden);
    }

    .nav-links.active a {
        color: var(--olive);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .book-layout,
    .service-chapter,
    .service-chapter.reverse {
        flex-direction: column;
    }

    .travel-magazine {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .retiro-feature {
        padding: 1.5rem;
    }
}

/* Regras responsivas adicionais */
@media (min-width: 901px) {

    /* Desktop: mostrar links e esconder o botão hambúrguer */
    .nav-links {
        display: flex;
        gap: 2.5rem;
        align-items: center;
    }

    .menu-toggle {
        display: none;
    }
}

@media (max-width: 900px) {

    /* Ajustes gerais para tablets e pequenos laptops */
    .hero {
        min-height: 60vh;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn-primary {
        padding: 0.8rem 1.6rem;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 1.2rem;
    }

    .mag-image img,
    .book-image img,
    .service-img img {
        height: auto;
    }

    .journal-grid,
    .testimonials-grid,
    .service-chapter {
        gap: 1rem;
    }

    .floating-actions {
        right: 1rem;
        bottom: 1rem;
    }
}

@media (max-width: 600px) {

    /* Ajustes para celulares pequenos */
    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 100svh;
        background-position: center 40%;
    }

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

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .book-text .quote {
        font-size: 1.4rem;
    }

    .service-img {
        min-width: 0;
        width: 100%;
    }

    .journal-entry {
        min-width: 100%;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .floating-btn {
        width: 3rem;
        height: 3rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 0.7rem;
    }

    .gallery-item img,
    .journal-entry img {
        height: auto;
    }

    .organic-gallery {
        flex-direction: column;
    }

    .gallery-item,
    .gallery-item.tall,
    .gallery-item.wide {
        flex: none;
        width: 100%;
        min-height: 220px;
    }
}

/* animações fade-in */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* parallax sutil */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 1024px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

/* linha ornamental */
.ornamental-line {
    width: 70px;
    height: 1px;
    background: var(--gold-muted);
    margin: 1.5rem auto;
}

/* Ícones Lucide */
[data-lucide] {
    display: inline-block;
    vertical-align: middle;
    width: 1.2em;
    height: 1.2em;
    stroke-width: 2;
}

.menu-toggle [data-lucide] {
    width: 1.5rem;
    height: 1.5rem;
}

.retiro-dates [data-lucide],
.map-symbol [data-lucide],
.whatsapp-highlight [data-lucide] {
    width: 1.1em;
    height: 1.1em;
    margin-right: 0.3rem;
}