/* ====== BASE ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'DM Sans', sans-serif;
    background: #f6f1eb;
    color: #2b2b2b;
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing: -0.01em; }

/* Progress */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: #b48b6f;
    z-index: 999;
    width: 0%;
    transition: width 0.1s;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    transition: 0.4s;
}
.nav.scrolled {
    background: rgba(246, 241, 235, 0.92);
    backdrop-filter: blur(10px);
    padding: 12px 40px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: #4a3a2e; text-shadow: none; }
.nav-logo span { color: #dbb594; }
.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}
.nav-links a {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    transition: color 0.3s;
}
.nav.scrolled .nav-links a { color: #4a3a2e; }
.nav-links a:hover { color: #dbb594; }
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.menu-toggle span {
    width: 28px;
    height: 2px;
    background: #fff;
    transition: 0.3s;
}
.nav.scrolled .menu-toggle span { background: #4a3a2e; }
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, #2b2b2b 0%, #4a3a2e 100%);
    padding: 120px 20px 80px;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('static/praia-por-do-sol-pantano.webp') center/cover no-repeat;
    opacity: 0.4;
    mix-blend-mode: overlay;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin: 0 auto;
}
.hero-content .badge {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #dbb594;
    border: 1px solid #dbb594;
    padding: 6px 20px;
    border-radius: 40px;
    margin-bottom: 24px;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
}
.hero-content h1 {
    font-size: clamp(3.2rem, 8vw, 6rem);
    color: #fff;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.hero-content h1 em { color: #dbb594; font-style: italic; }
.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    max-width: 520px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-weight: 300;
}
.btn-primary {
    display: inline-block;
    background: #dbb594;
    color: #1f1f1f;
    padding: 16px 40px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 40px;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-primary:hover {
    background: #fff;
    transform: scale(1.03);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

/* Seções */
section { padding: 80px 40px; max-width: 1280px; margin: 0 auto; }
.section-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #b48b6f;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
    border-bottom: 2px solid #dbb594;
    padding-bottom: 4px;
}
.section-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.1;
    color: #2b2b2b;
    margin-bottom: 16px;
}
.section-sub {
    font-size: 1.1rem;
    color: #5a4a3a;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 300;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.feature-card {
    background: #fffcf9;
    padding: 28px 20px;
    border-radius: 30px 10px 30px 10px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
    border: 1px solid #e8ddd0;
    transition: 0.4s;
    clip-path: polygon(0% 0%, 95% 0%, 100% 5%, 100% 100%, 5% 100%, 0% 95%);
}
.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: #b48b6f;
    box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.feature-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a3a2e;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #dbb594;
    padding-bottom: 6px;
    display: inline-block;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 0.95rem;
    color: #5a4a3a;
    line-height: 1.5;
    margin-top: 4px;
}

/* Galeria */
.gallery-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.gallery-board .item {
    position: relative;
    border-radius: 30px 10px 30px 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    transition: transform 0.4s, box-shadow 0.4s;
}
.gallery-board .item:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 48px rgba(0,0,0,0.10);
}
.gallery-board .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s, filter 0.4s;
    filter: saturate(0.95) contrast(1.02);
}
.gallery-board .item:hover img {
    transform: scale(1.08);
    filter: saturate(1.05);
}
.gallery-board .item .caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 14px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6) 70%);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
    transform: translateY(0);
    transition: transform 0.3s;
    pointer-events: none;
}
.gallery-board .item:hover .caption { transform: translateY(-4px); }

/* Split */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}
.split.reverse { direction: rtl; }
.split.reverse .split-text { direction: ltr; }
.split-text h3 {
    font-size: 2.4rem;
    color: #2b2b2b;
    border-left: 6px solid #dbb594;
    padding-left: 20px;
    margin-bottom: 20px;
}
.split-text ul {
    list-style: none;
    margin: 16px 0 12px;
}
.split-text ul li {
    padding: 12px 0;
    border-bottom: 1px dashed #ddd0c0;
    display: flex;
    gap: 14px;
    font-size: 1rem;
    color: #4a3a2e;
}
.split-text ul li strong {
    color: #b48b6f;
    font-weight: 600;
    min-width: 120px;
}
.split-image {
    height: 340px;
    border-radius: 60px 10px 60px 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    transition: 0.4s;
}
.split-image:hover { transform: scale(1.01); }

/* Seasons */
.seasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}
.season-card {
    background: #fffcf9;
    border: 1px solid #e8ddd0;
    border-radius: 30px 10px 30px 10px;
    padding: 28px 24px 20px;
    transition: 0.4s;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.season-card:hover {
    transform: translateY(-8px);
    border-color: #b48b6f;
}
.season-card .season-icon { font-size: 2rem; display: block; margin-bottom: 6px; }
.season-card .season-tag {
    display: inline-block;
    background: rgba(212,175,55,0.12);
    border: 1px solid rgba(212,175,55,0.2);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #b48b6f;
    margin-bottom: 12px;
}
.season-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #4a3a2e;
    margin-bottom: 6px;
}
.season-card .season-highlight {
    font-size: 0.95rem;
    color: #5a4a3a;
    margin-bottom: 8px;
}
.season-card .season-description {
    font-size: 0.85rem;
    color: #6a5a4a;
    line-height: 1.6;
}
.season-card .season-btn {
    display: inline-block;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 400;
    color: #b48b6f;
    transition: 0.3s;
    margin-top: 12px;
}
.season-card .season-btn:hover {
    background: rgba(212,175,55,0.15);
    border-color: rgba(212,175,55,0.3);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.review-card {
    background: #fffcf9;
    border-radius: 30px 10px 30px 10px;
    padding: 32px 28px;
    border: 1px solid #e8ddd0;
    transition: 0.3s;
    position: relative;
}
.review-card::before {
    content: '\201C';
    font-size: 4rem;
    color: #dbb594;
    font-family: 'Cormorant Garamond', serif;
    position: absolute;
    top: -8px;
    left: 16px;
    opacity: 0.3;
}
.review-card:hover {
    border-color: #b48b6f;
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}
.review-stars {
    color: #dbb594;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.review-text {
    font-style: italic;
    color: #3a3a3a;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 14px;
}
.review-author {
    font-weight: 600;
    color: #2b2b2b;
    font-size: 0.9rem;
}

/* Callout */
.callout {
    background: #4a3a2e;
    border-radius: 60px 10px 60px 10px;
    padding: 48px 44px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    margin-top: 60px;
    color: #fff;
}
.callout h3 { font-size: 2.2rem; }
.callout p {
    color: #d0c0b0;
    max-width: 440px;
    font-size: 0.95rem;
    line-height: 1.6;
}
.btn-outline {
    border: 1px solid #dbb594;
    color: #dbb594;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-outline:hover {
    background: #dbb594;
    color: #2b2b2b;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 50px;
}
.faq-item {
    background: #fffcf9;
    border-radius: 20px 6px 20px 6px;
    padding: 24px 28px;
    border: 1px solid #e8ddd0;
    transition: 0.3s;
}
.faq-item:hover { border-color: #b48b6f; }
.faq-item h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #2b2b2b;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.faq-item h4 span { color: #dbb594; font-size: 1.2rem; }
.faq-item p {
    font-size: 0.9rem;
    color: #5a4a3a;
    line-height: 1.5;
    margin-top: 4px;
}

/* Políticas */
.policies-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}
.policy-card {
    background: #fffcf9;
    border-radius: 20px 6px 20px 6px;
    padding: 28px 28px 24px;
    border: 1px solid #e8ddd0;
    transition: 0.3s;
    border-left: 4px solid #dbb594;
}
.policy-card:hover {
    border-color: #b48b6f;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}
.policy-card .policy-icon { font-size: 1.6rem; display: block; margin-bottom: 6px; }
.policy-card h4 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: #2b2b2b;
    margin-bottom: 4px;
}
.policy-card p {
    font-size: 0.92rem;
    color: #5a4a3a;
    line-height: 1.6;
    margin-top: 2px;
}
.policy-card .policy-tag {
    display: inline-block;
    background: rgba(212,175,55,0.10);
    border: 1px solid rgba(212,175,55,0.15);
    padding: 2px 12px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #b48b6f;
    margin-top: 6px;
}
.policy-card.highlight {
    background: #faf3ec;
    border-left-color: #b48b6f;
    border-color: #dbb594;
}

/* Mapa */
.map-container {
    border-radius: 30px 10px 30px 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border: 1px solid #e8ddd0;
    transition: 0.3s;
    margin-top: 30px;
}
.map-container:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.08);
    border-color: #b48b6f;
}
.map-container iframe {
    display: block;
    width: 100%;
    height: 400px;
    border: 0;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: #f6f1eb;
    max-width: 480px;
    width: 100%;
    border-radius: 30px 10px 30px 10px;
    padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    animation: fadeUp 0.4s cubic-bezier(0.2,0.1,0.2,1);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #4a3a2e;
    cursor: pointer;
    padding: 4px 8px;
    transition: 0.2s;
    z-index: 10;
}
.modal-close:hover { color: #b48b6f; transform: rotate(90deg); }
.modal-loading {
    text-align: center;
    padding: 20px 0 10px;
}
.modal-loading .spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #ddd0c0;
    border-top-color: #b48b6f;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-bottom: 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal-loading h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: #2b2b2b;
    margin-bottom: 4px;
}
.modal-loading p {
    color: #5a4a3a;
    font-size: 0.9rem;
    margin-bottom: 0;
}
.modal-form { display: none; }
.modal-form.active { display: block; }
.modal-form h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    margin-bottom: 4px;
    color: #2b2b2b;
}
.modal-form .sub {
    color: #5a4a3a;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}
.modal-form label {
    display: block;
    font-weight: 600;
    font-size: 0.8rem;
    color: #4a3a2e;
    margin-bottom: 3px;
}
.modal-form input {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd0c0;
    border-radius: 12px;
    background: #fff;
    font-size: 1rem;
    transition: 0.3s;
    font-family: 'DM Sans', sans-serif;
}
.modal-form input:focus {
    outline: none;
    border-color: #b48b6f;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}
.modal-form .input-group { margin-bottom: 14px; }
.modal-form .btn-submit {
    width: 100%;
    background: #dbb594;
    color: #1f1f1f;
    padding: 14px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    margin-top: 4px;
}
.modal-form .btn-submit:hover {
    background: #fff;
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.modal-form .form-footnote {
    font-size: 0.7rem;
    color: #7a6a5a;
    text-align: center;
    margin-top: 10px;
}

/* Campos de data e cadastro */
.reserva-fields {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 20px 0 16px;
}
.reserva-fields .field-group {
    background: #fffcf9;
    border-radius: 16px 4px 16px 4px;
    padding: 12px 18px;
    border: 1px solid #e8ddd0;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1 1 180px;
    max-width: 220px;
}
.reserva-fields .field-group label {
    font-weight: 600;
    font-size: 0.75rem;
    color: #4a3a2e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.reserva-fields .field-group input {
    border: none;
    background: transparent;
    font-size: 0.9rem;
    padding: 4px 0;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    color: #2b2b2b;
}
.reserva-fields .field-group input:focus { outline: none; }
.reserva-fields .field-group input[type="number"] { width: 60px; }

/* Resumo da reserva */
.resumo-box {
    background: #fffcf9;
    border-radius: 20px 6px 20px 6px;
    border: 2px solid #b48b6f;
    padding: 24px 28px;
    margin: 20px auto 16px;
    max-width: 700px;
    text-align: left;
    display: none;
    animation: fadeUp 0.4s ease;
}
.resumo-box.visible { display: block; }
.resumo-box .resumo-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed #e8ddd0;
    font-size: 0.95rem;
}
.resumo-box .resumo-item:last-child { border-bottom: none; }
.resumo-box .resumo-item .label { color: #5a4a3a; }
.resumo-box .resumo-item .value { font-weight: 600; color: #2b2b2b; }
.resumo-box .resumo-total {
    font-size: 1.3rem;
    font-weight: 700;
    color: #111111;
    text-align: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 2px solid #dbb594;
}
.resumo-box .resumo-politica {
    background: #faf3ec;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 14px;
    font-size: 0.9rem;
    color: #2b2b2b;
    border-left: 4px solid #b48b6f;
    line-height: 1.6;
}
.resumo-box .resumo-politica strong { color: #b48b6f; }
.resumo-box .resumo-politica .detalhe-cancelamento {
    margin-top: 6px;
    padding-left: 12px;
    border-left: 2px solid #dbb594;
}
.resumo-box .resumo-economia {
    background: #e8f5e9;
    padding: 12px 16px;
    border-radius: 12px;
    margin-top: 12px;
    font-size: 0.95rem;
    color: #1b5e20;
    border-left: 4px solid #2e7d32;
    text-align: center;
    font-weight: 600;
}

/* Campos cliente */
.campos-cliente {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 2px dashed #dbb594;
    display: none;
}
.campos-cliente.visible { display: block; }
.campos-cliente h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #2b2b2b;
    margin-bottom: 12px;
    text-align: center;
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Cards de pagamento */
.pay-card {
    cursor: pointer;
    background: #fffcf9;
    border-radius: 20px 6px 20px 6px;
    padding: 20px 24px;
    border: 2px solid #e8ddd0;
    border-left: 6px solid #ddd0c0;
    flex: 1 1 220px;
    max-width: 260px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    position: relative;
}
.pay-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.pay-card.active {
    border-color: #b48b6f;
    border-left-color: #b48b6f;
    background: #faf3ec;
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.pay-card .pay-icon { font-size: 1.6rem; margin-bottom: 4px; }
.pay-card .pay-price { font-size: 1.4rem; font-weight: 700; color: #b48b6f; }
.pay-card .pay-detail { font-size: 0.8rem; color: #5a4a3a; line-height: 1.5; margin-top: 4px; }
.pay-card .pay-badge {
    margin-top: 8px;
    font-size: 0.7rem;
    background: rgba(212,175,55,0.10);
    padding: 2px 10px;
    border-radius: 50px;
    display: inline-block;
    color: #5a3f2b;
}
.pay-card .pay-economy {
    font-size: 0.75rem;
    color: #0e6251;
    background: #e8f5e9;
    padding: 4px 10px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 6px;
    font-weight: 600;
}

/* Seletor de parcelas */
.parcelas-selector {
    margin: 12px 0 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}
.parcelas-selector .parcela-btn {
    background: #f6f1eb;
    border: 1px solid #ddd0c0;
    border-radius: 30px;
    padding: 6px 14px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #4a3a2e;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}
.parcelas-selector .parcela-btn.active {
    background: #b48b6f;
    color: #fff;
    border-color: #b48b6f;
}
.parcelas-selector .parcela-btn:hover {
    background: #dbb594;
    color: #fff;
}
.parcelas-selector .parcela-btn.sem-juros {
    border-color: #2e7d32;
    background: #e8f5e9;
    color: #1b5e20;
}
.parcelas-selector .parcela-btn.sem-juros.active {
    background: #2e7d32;
    color: #fff;
    border-color: #1b5e20;
}
.parcelas-selector .parcela-btn .selo-juros {
    font-size: 0.5rem;
    display: block;
    font-weight: 400;
    color: #2e7d32;
    margin-top: 2px;
}
.parcela-info {
    font-size: 0.8rem;
    color: #5a4a3a;
    text-align: center;
    margin-top: 4px;
}
.parcela-info strong { color: #2e7d32; }

/* Final CTA */
.final-cta {
    text-align: center;
    background: #e8ddd0;
    border-radius: 60px 10px 60px 10px;
    padding: 60px 30px;
    margin-top: 60px;
}
.final-cta h2 { font-size: 3rem; color: #2b2b2b; }
.final-cta .price {
    font-size: 2.2rem;
    color: #b48b6f;
    font-weight: 700;
    margin: 10px 0 16px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 24px;
    font-size: 0.85rem;
    color: #7a6a5a;
    border-top: 1px solid #e0d5c8;
    max-width: 1280px;
    margin: 0 auto;
}
footer a { color: #b48b6f; font-weight: 500; }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.footer-links .sep { color: #b48b6f; }
.footer-links .airbnb-link {
    opacity: 0.6;
    font-size: 0.8rem;
    transition: opacity 0.3s;
}
.footer-links .airbnb-link:hover { opacity: 1; }

/* Back to top */
.back-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #4a3a2e;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(16px);
    transition: 0.4s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    z-index: 200;
}
.back-top.visible {
    opacity: 1;
    transform: translateY(0);
}
.back-top:hover {
    background: #dbb594;
    color: #2b2b2b;
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2,0.1,0.2,1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.92);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
    padding: 20px;
}
.lightbox.active { display: flex; }
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.8rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
    z-index: 10;
}
.lightbox .close:hover { opacity: 1; }
.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    object-fit: contain;
}
.lightbox .nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(4px);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lightbox .nav-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-50%) scale(1.05);
}
.lightbox .nav-btn.prev { left: 24px; }
.lightbox .nav-btn.next { right: 24px; }
.lightbox .counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    background: rgba(0,0,0,0.5);
    padding: 6px 18px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
}

/* Responsivo */
@media (max-width:900px) {
    .features-grid { grid-template-columns: 1fr 1fr; }
    .gallery-board { grid-template-columns: 1fr 1fr; }
    .split { grid-template-columns: 1fr; gap: 30px; }
    .split.reverse { direction: ltr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .seasons-grid { grid-template-columns: 1fr 1fr; }
    .policies-grid { grid-template-columns: 1fr; }
    .lightbox .nav-btn { width: 40px; height: 40px; font-size: 1.2rem; }
    .lightbox .nav-btn.prev { left: 10px; }
    .lightbox .nav-btn.next { right: 10px; }
    .map-container iframe { height: 280px; }
}

@media (max-width:600px) {
    body { overflow-x: hidden; font-size: 1.15rem; }
    section { padding: 50px 20px; }
    .nav { padding: 14px 20px; }
    .nav.scrolled { padding: 10px 20px; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #f6f1eb;
        padding: 20px;
        border-bottom: 1px solid #ddd0c0;
    }
    .nav-links.open { display: flex; }
    .menu-toggle { display: flex; }
    .hero { padding: 100px 20px 60px; }

    .features-grid { grid-template-columns: 1fr; }
    .gallery-board { grid-template-columns: 1fr; gap: 12px; }
    .seasons-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
    .policies-grid { grid-template-columns: 1fr; }
    .callout { flex-direction: column; text-align: center; padding: 32px 24px; }
    .final-cta { padding: 40px 20px; }
    .final-cta h2 { font-size: 2.2rem; }

    .lightbox .nav-btn { width: 36px; height: 36px; font-size: 1rem; }
    .lightbox .nav-btn.prev { left: 6px; }
    .lightbox .nav-btn.next { right: 6px; }
    .lightbox img { max-height: 70vh; }

    .section-title { font-size: 2.2rem; }
    .section-sub { font-size: 1.1rem; }
    .feature-card h4 { font-size: 1.4rem; }
    .feature-card p { font-size: 1rem; }
    .split-text h3 { font-size: 2rem; }
    .split-text ul li { font-size: 1.05rem; }
    .review-text { font-size: 1rem; }
    .faq-item h4 { font-size: 1.05rem; }
    .faq-item p { font-size: 0.95rem; }
    .season-card h4 { font-size: 1.4rem; }
    .season-card .season-highlight { font-size: 1rem; }
    .season-card .season-description { font-size: 0.9rem; }
    .callout h3 { font-size: 1.8rem; }
    .callout p { font-size: 1rem; }
    .final-cta .price { font-size: 1.8rem; }
    .btn-primary { font-size: 0.95rem; padding: 14px 32px; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-content p { font-size: 1.1rem; }

    .split-image { height: 220px; }
    .gallery-board .item { aspect-ratio: 4/3; }
    .gallery-board .item .caption { font-size: 0.85rem; padding: 12px 12px 10px; }

    .policy-card { padding: 22px 20px 18px; }
    .policy-card h4 { font-size: 1rem; }
    .policy-card p { font-size: 0.9rem; }

    .map-container iframe { height: 220px; }
    .modal-content { padding: 24px 18px; }
    .modal-loading h3 { font-size: 1.2rem; }
    .modal-form h3 { font-size: 1.5rem; }
    .footer-links { gap: 10px; font-size: 0.8rem; }
    .footer-links .sep { display: none; }
    .footer-links a { display: inline-block; padding: 2px 6px; }
}
.aviso-desconto-simples {
    background: #e8f5e9;
    border-left: 4px solid #2e7d32;
    padding: 10px 18px;
    border-radius: 8px;
    margin: 4px 0 20px;
    font-size: 1rem;
    color: #1e3a2a;
    display: inline-block;
    max-width: 100%;
}
.aviso-desconto-simples .icone {
    font-size: 1.2rem;
    margin-right: 8px;
}
.aviso-desconto-simples strong {
    color: #1b5e20;
}
