/* ============================================================
   Fontes self-hosted (identidade visual)
============================================================ */
@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/theseasons-light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/theseasons-lightitalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/theseasons-regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/theseasons-italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/theseasons-bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'The Seasons';
    src: url('../fonts/theseasons-bolditalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Citadel Script';
    src: url('../fonts/citadel-script.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* ============================================================
   Awwwards & Premium Overrides
============================================================ */
* { border-radius: 0 !important; }

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Image Parallax Container Wrapper */
.parallax-wrap {
    overflow: hidden;
    position: relative;
}
.parallax-img {
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

/* Micro-interactions */
.hover-line {
    display: inline-block;
    position: relative;
}
.hover-line::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transition: transform 0.5s cubic-bezier(0.86, 0, 0.07, 1);
}
.hover-line:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.cta-btn-hover {
    position: relative;
    overflow: hidden;
}
.cta-btn-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transition: left 0.5s ease;
    z-index: 1;
}
.cta-btn-hover:hover::before {
    left: 100%;
}

/* Custom Swiper Nav styling */
.custom-swiper-button {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #C2AA8E;
    color: #C2AA8E;
    background: transparent;
    cursor: pointer;
    transition: all 0.4s ease;
}
.custom-swiper-button:hover {
    background: #C2AA8E;
    color: #7C5C3D;
    border-color: #C2AA8E;
}
.custom-swiper-button.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.awwwards-footer-text {
    font-size: clamp(3rem, 12vw, 15rem);
    line-height: 0.8;
    letter-spacing: -0.02em;
}

/* ============================================================
   LGPD — BANNER DE COOKIES + MODAL DE PRIVACIDADE
============================================================ */
/* override do reset global border-radius:0 — banner/modal podem ter um respiro */
.p2m-cookie-banner, .p2m-cookie-banner *,
.p2m-privacy-overlay, .p2m-privacy-overlay * { border-radius: 0 !important; }

.p2m-cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 9999;
    background: #4A4138;
    border-top: 1px solid rgba(194, 170, 142, 0.25);
    padding: 1.25rem 1.5rem;
    display: none;
    font-family: 'Inter', sans-serif;
    color: #F9F4EA;
    animation: p2mSlideUp 0.4s ease-out;
}
.p2m-cookie-banner.visible { display: block; }
@keyframes p2mSlideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}
.p2m-cookie-inner {
    max-width: 1280px; margin: 0 auto;
    display: flex; align-items: center; gap: 1.5rem;
    flex-wrap: wrap; justify-content: space-between;
}
.p2m-cookie-text {
    flex: 1; min-width: 280px;
    font-size: 0.85rem; line-height: 1.6;
    font-weight: 300; color: rgba(249, 245, 236, 0.92);
}
.p2m-cookie-text a {
    color: #C2AA8E; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    font-size: 0.78rem; cursor: pointer;
    border-bottom: 1px solid rgba(194, 170, 142, 0.5);
}
.p2m-cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.p2m-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.18em;
    padding: 0.85rem 1.75rem; cursor: pointer;
    border: none; transition: all 0.3s ease; white-space: nowrap;
}
.p2m-btn-accept {
    background: #7C5C3D; color: #fff;
}
.p2m-btn-accept:hover { background: #C2AA8E; }
.p2m-btn-decline {
    background: transparent; color: rgba(249, 245, 236, 0.8);
    border: 1px solid rgba(249, 245, 236, 0.3);
}
.p2m-btn-decline:hover {
    background: rgba(249, 245, 236, 0.08); color: #fff;
}
@media (max-width: 640px) {
    .p2m-cookie-inner { flex-direction: column; align-items: stretch; }
    .p2m-cookie-actions { width: 100%; }
    .p2m-btn { flex: 1; }
}

/* Modal */
.p2m-privacy-overlay {
    position: fixed; inset: 0; z-index: 10000;
    background: rgba(30, 28, 25, 0.7);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center; justify-content: center;
    padding: 1.5rem;
    opacity: 0; transition: opacity 0.3s ease;
}
.p2m-privacy-overlay.open { display: flex; opacity: 1; }
.p2m-privacy-box {
    background: #F9F4EA;
    max-width: 760px; width: 100%; max-height: 88vh;
    display: flex; flex-direction: column;
    overflow: hidden; position: relative;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}
.p2m-privacy-head {
    padding: 1.75rem 2rem 1rem;
    border-bottom: 1px solid rgba(124, 92, 61, 0.18);
    display: flex; justify-content: space-between;
    align-items: flex-start; gap: 1rem;
}
.p2m-privacy-head h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 600;
    color: #4A4138;
}
.p2m-privacy-close {
    background: transparent; border: 1px solid rgba(124, 92, 61, 0.3);
    width: 38px; height: 38px; min-width: 38px;
    cursor: pointer; color: #7C5C3D;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s;
}
.p2m-privacy-close:hover { background: #7C5C3D; color: #fff; border-color: #7C5C3D; }
.p2m-privacy-body {
    padding: 1.5rem 2rem 2rem; overflow-y: auto;
    font-family: 'Inter', sans-serif;
    color: #4A4138; font-size: 0.92rem; line-height: 1.7;
}
.p2m-privacy-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 600;
    color: #7C5C3D;
    margin: 1.6rem 0 0.5rem;
}
.p2m-privacy-body h3:first-child { margin-top: 0; }
.p2m-privacy-body p, .p2m-privacy-body ul { margin-bottom: 0.8rem; }
.p2m-privacy-body ul { padding-left: 1.4rem; }
.p2m-privacy-body li { margin-bottom: 0.4rem; }
.p2m-privacy-body strong { color: #4A4138; font-weight: 600; }
.p2m-privacy-body a { color: #7C5C3D; font-weight: 600; }
.p2m-privacy-update {
    font-size: 0.78rem; opacity: 0.65; margin-top: 1.5rem;
    padding-top: 1rem; border-top: 1px solid rgba(124, 92, 61, 0.18);
}
