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

:root {
    --bg-primary: #FAF9F6;
    --bg-secondary: #F3F1EC;
    --text-primary: #1C1C1C;
    --text-secondary: #555555;
    --accent: #B8A891;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

p {
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* Utils */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.fade-in { animation: fadeIn 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* HEADER */
.premium-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 2rem 0;
    z-index: 100;
    display: flex;
    justify-content: center;
}
.premium-header--static {
    position: relative;
    background: var(--bg-primary);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.premium-header img {
    height: 45px;
    opacity: 0.9;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 2rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/Foto%20Banner%20Topo.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    z-index: -1;
}
.hero-content {
    text-align: center;
    color: #fff;
    max-width: 800px;
    margin-top: 5rem;
}
.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: -0.02em;
}
.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
    40% { transform: translate(-50%, -10px); }
    60% { transform: translate(-50%, -5px); }
}

/* EDITORIAL SECTIONS */
.editorial-section {
    padding: 6rem 0;
    position: relative;
}
.editorial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}
.editorial-grid.reverse {
    direction: rtl;
}
.editorial-grid.reverse > * {
    direction: ltr;
}

.editorial-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 2rem;
    position: relative;
}
.editorial-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: var(--font-body);
}
.editorial-image-wrapper {
    position: relative;
    padding: 2rem;
}
.editorial-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 80%;
    background-color: var(--bg-secondary);
    z-index: -1;
}
.editorial-grid.reverse .editorial-image-wrapper::before {
    left: auto; right: 0;
}
.editorial-image-wrapper img {
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

/* FEATURES (Consultoria) */
.features-section {
    background-color: var(--bg-secondary);
    padding: 5rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}
.feature-item {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
}
.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
}

/* FULLWIDTH IMAGE */
.full-image-section {
    height: 80vh;
    background-image: url('../images/bloco-lua-de-mel.png');
    background-size: cover;
    background-position: center 30%;
    background-attachment: fixed;
}

/* QUOTE / SOBRE */
.quote-section {
    padding: 8rem 0;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.quote-section h2 {
    font-size: clamp(2rem, 3.5vw, 3.5rem);
    font-style: italic;
    margin-bottom: 3rem;
    line-height: 1.3;
}
.signature {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
}

/* PRIVACY PAGE */
.privacy-page {
    padding: 4rem 0 6rem;
    background: var(--bg-primary);
}
.privacy-inner {
    max-width: 720px;
}
.privacy-back {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2.5rem;
    transition: opacity 0.2s ease;
}
.privacy-back:hover {
    opacity: 0.7;
}
.privacy-page .editorial-title {
    margin-bottom: 0.75rem;
}
.privacy-date {
    font-size: 0.95rem;
    font-style: italic;
    color: var(--accent);
    margin-bottom: 2.5rem;
}
.privacy-page h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin-top: 3rem;
    margin-bottom: 1rem;
}
.privacy-page ul {
    margin: 0 0 1.5rem 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    font-size: 1.05rem;
}
.privacy-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* FOOTER */
.premium-footer {
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: var(--bg-primary);
}
.premium-footer p {
    font-size: 0.85rem;
    margin: 0;
}
.premium-footer p + p {
    margin-top: 0.75rem;
}
.premium-footer a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    opacity: 0.75;
    transition: opacity 0.2s ease;
}
.premium-footer a:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .editorial-section {
        padding: 5rem 0;
    }
    .editorial-image-wrapper {
        padding: 1rem;
    }
}

/* DESTINOS */
.segments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}
.segment-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    background-color: var(--bg-secondary);
    background-size: cover;
    background-position: center;
    position: relative;
    isolation: isolate;
    padding: 1rem;
    font-weight: 400;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    font-family: var(--font-heading);
    overflow: hidden;
}
.segment-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    transition: background-color 0.3s ease;
}
.segment-tag:hover::before {
    background-color: rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .segments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 600px) {
    .segments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
