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

body, html {
    width: 100%;
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #ffffff;
    scroll-behavior: smooth;
}

/* Header & Navigation VIP */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 4rem;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

.main-header.scrolled {
    background: rgba(10, 15, 30, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 0.8rem 4rem;
    border-bottom: 1px solid rgba(228, 179, 91, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 65px;
    object-fit: contain;
    transition: height 0.4s ease;
}

.main-header.scrolled .logo-img {
    height: 52px;
}

/* === NAVIGATION DESKTOP & MOBILE === */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.desktop-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.desktop-nav a:hover {
    color: #fcf6ba;
    transform: translateY(-2px);
}

.desktop-nav a.nav-tour {
    color: #fcf6ba;
    background: rgba(228, 179, 91, 0.15);
    border: 1px solid #e4b35b;
    padding: 8px 18px;
    border-radius: 30px;
}

.desktop-nav a.nav-tour:hover {
    background: #e4b35b;
    color: #02213d;
}

.desktop-nav a.nav-contact {
    background: linear-gradient(135deg, #e4b35b, #fcf6ba, #b38728);
    color: #02213d;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
}

.desktop-nav a.nav-contact:hover {
    box-shadow: 0 6px 18px rgba(228, 179, 91, 0.45);
}

/* Mobile Menu Button & Drawer */
.mobile-menu-btn {
    display: none;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid #e4b35b;
    color: #fcf6ba;
    font-size: 1.5rem;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: #e4b35b;
    color: #02213d;
}

.mobile-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e4b35b;
    padding: 20px;
    gap: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
    z-index: 999;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.mobile-nav a:hover {
    color: #fcf6ba;
    background: rgba(228, 179, 91, 0.1);
    border-radius: 8px;
}

.mobile-nav a.nav-tour {
    color: #fcf6ba;
    border: 1px solid #e4b35b;
    border-radius: 30px;
    margin-top: 5px;
}

.mobile-nav a.nav-contact {
    background: linear-gradient(135deg, #e4b35b, #fcf6ba, #b38728);
    color: #02213d;
    border-radius: 30px;
    font-weight: 700;
    border: none;
}

/* Sections */
.section-block {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
}

/* Full block link */
.section-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    text-decoration: none;
}

/* Background images from local folder */
.slide-1 { background-image: url('bg1.png'); }
.slide-2 { background-image: url('bg2.png'); }
.slide-3 { background-image: url('bg3.png'); }
.slide-4 { background-image: url('bg4.png'); }
.slide-5 { background-image: url('bg5.png'); }
.slide-6 { 
    background-image: url('bg6.png'); 
    background-attachment: scroll;
}

/* Background Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Overlay for darkening the background */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.slide-6 .overlay {
    background: rgba(0, 0, 0, 0.4);
}

/* Content inside slides */
.slide-content {
    position: relative;
    z-index: 10; /* Fica acima do .section-link (z-index 5) para que todos os botões funcionem perfeitamente */
    pointer-events: none; /* Permite que cliques no espaço vazio ao redor passem para o .section-link de fundo */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 50px 20px;
    width: 100%;
}

.slide-content > * {
    pointer-events: auto; /* Reativa os cliques em textos, títulos e principalmente em botões */
}

/* Typography */
.title {
    font-family: 'Cinzel', serif;
    font-size: 5.5rem;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    margin: 10px 0;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.gold-gradient {
    color: #e4b35b;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.subtitle {
    font-size: 1.1rem;
    letter-spacing: 12px;
    text-transform: uppercase;
    font-weight: 300;
}

.cursive-subtitle {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 3rem;
    margin-top: -30px;
    color: #e4b35b;
    font-weight: 400;
}

.hero-logo {
    max-width: 440px;
    width: 85%;
    height: auto;
    margin: 15px 0 20px 0;
    filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.85));
}

.description {
    margin-top: 20px;
    font-size: 1.1rem;
    letter-spacing: 4px;
    font-weight: 400;
    line-height: 1.8;
    color: #f5f0e9;
    max-width: 700px;
}

/* Button */
.btn-primary {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 50px;
    color: #02213d;
    background: linear-gradient(135deg, #e4b35b, #fcf6ba, #b38728);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 40px; 
    border: none;
    box-shadow: 0 10px 25px rgba(228, 179, 91, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* We still want a hover effect on the section block to make the button react */
.section-link:hover ~ .slide-content .btn-primary {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(228, 179, 91, 0.65), 0 0 25px rgba(252, 246, 186, 0.85);
}

/* Buttons Wrapper & Tour 360 Button */
.buttons-wrapper {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 35px;
    width: 100%;
}

.buttons-wrapper .btn-primary {
    margin-top: 0;
}

.btn-tour-360 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 35px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #e4b35b;
    color: #fcf6ba;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.75);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.btn-tour-360:hover {
    background: #e4b35b;
    color: #02213d;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(228, 179, 91, 0.65);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    display: inline-block;
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* === Contact Section Specifics === */
.contact-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center; 
    padding-top: 50px;
    padding-bottom: 80px;
}

.left-contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px; 
}

.contact-logo-img {
    max-width: 270px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.85));
    transition: transform 0.3s ease;
}

.contact-logo-img:hover {
    transform: scale(1.03);
}

/* Social Icons */
.social-wrapper {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    filter: brightness(0);
}

/* Form Box (Right) */
.form-box {
    background: rgba(15, 23, 42, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(228, 179, 91, 0.35); 
    border-radius: 20px;
    padding: 40px;
    width: 100%;
    max-width: 550px;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.8), 0 0 30px rgba(228, 179, 91, 0.12);
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: left;
}

.input-wrapper.full-width {
    width: 100%;
}

.contact-form label {
    font-size: 0.95rem;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 400;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: #ffffff;
    border: none;
    border-radius: 2px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
}

.contact-form textarea {
    resize: none;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 5px;
}

.checkbox-group input {
    margin-top: 4px;
    accent-color: #e4b35b;
}

.checkbox-group label {
    font-size: 0.75rem;
    color: #e2e8f0;
    line-height: 1.4;
    text-align: left;
}

/* Submit Button Gold */
.btn-submit-gold {
    margin-top: 15px;
    padding: 15px 0;
    width: 100%;
    color: #02213d;
    background: linear-gradient(135deg, #e4b35b, #fcf6ba, #b38728); 
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(228, 179, 91, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(228, 179, 91, 0.65), 0 0 20px rgba(252, 246, 186, 0.8);
}

/* Footer Bottom (Absolute within section 6) */
.footer-bottom {
    position: absolute;
    bottom: 20px;
    right: 20px;
    text-align: right;
    z-index: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .title { font-size: 3rem; }
    .cursive-subtitle { font-size: 2rem; margin-top: -15px; }
    .subtitle { font-size: 0.9rem; letter-spacing: 4px; }
    .hero-logo { width: 80vw; max-width: 240px; margin: 10px 0 15px 0; }
    .description { font-size: 0.85rem; letter-spacing: 2px; }
    
    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-top: 50px;
    }
    .left-contact-info {
        align-items: center;
        margin-top: 0;
        gap: 20px;
    }
    .contact-logo {
        text-align: center;
    }
    .contact-logo-img {
        max-width: 220px;
        margin: 0 auto;
        display: block;
    }
    .input-row { flex-direction: column; }
    .footer-bottom { position: relative; bottom: 0; right: 0; text-align: center; margin-top: 20px; }
}

/* === BUTTONS WRAPPER & TOUR 360 BUTTON === */
.buttons-wrapper {
    position: relative;
    z-index: 10; /* Fica acima do .section-link (z-index 5) para ser clicável */
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.buttons-wrapper .btn-primary {
    margin-top: 0;
}

.btn-tour-360 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 40px;
    color: #ffffff;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #e4b35b;
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6), 0 0 20px rgba(228, 179, 91, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.btn-tour-360:hover {
    background: linear-gradient(135deg, #e4b35b, #fcf6ba, #b38728);
    color: #02213d;
    border-color: #fcf6ba;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(228, 179, 91, 0.65), 0 0 30px rgba(252, 246, 186, 0.9);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background-color: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulse-green 2s infinite;
}

.btn-tour-360:hover .pulse-dot {
    background-color: #02213d;
    animation: none;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* === MODAL TOUR 360° LUXURY === */
.tour-modal,
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.tour-modal.active,
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.tour-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.tour-modal-content,
.modal-content {
    position: relative;
    z-index: 2;
    width: 92%;
    max-width: 1300px;
    height: 86vh;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(228, 179, 91, 0.45);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(228, 179, 91, 0.15);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-modal.active .tour-modal-content,
.modal-overlay.active .modal-content,
.modal-overlay.active .tour-modal-content {
    transform: scale(1);
}

.tour-modal-header,
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    background: rgba(10, 15, 30, 0.95);
    border-bottom: 1px solid rgba(228, 179, 91, 0.3);
}

.tour-modal-title-box {
    display: flex;
    align-items: center;
    gap: 15px;
}

.tour-badge {
    padding: 4px 12px;
    background: linear-gradient(135deg, #e4b35b, #b38728);
    color: #02213d;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    letter-spacing: 1px;
}

.tour-modal-title,
.modal-title {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 500;
}

.tour-modal-close,
.modal-close {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.tour-modal-close:hover,
.modal-close:hover {
    background: #e4b35b;
    color: #02213d;
    border-color: #e4b35b;
    transform: rotate(90deg);
}

.tour-modal-body,
.modal-body {
    flex: 1 1 auto !important;
    position: relative !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 480px;
    background: #000;
    overflow: hidden;
}

.tour-modal-body iframe,
.modal-body iframe,
.tour-iframe,
.tour-pannellum {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
    display: block !important;
}

.tour-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 30px;
    background: rgba(10, 15, 30, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    color: #cbd5e1;
}

.btn-tour-contact {
    padding: 8px 22px;
    background: linear-gradient(135deg, #e4b35b, #b38728);
    color: #02213d;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-tour-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(228, 179, 91, 0.5);
}

@media (max-width: 768px) {
    .buttons-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    .btn-tour-360 {
        padding: 12px 30px;
        font-size: 1rem;
    }
    .tour-modal-content {
        width: 96%;
        height: 90vh;
        border-radius: 14px;
    }
    .tour-modal-header {
        padding: 12px 18px;
    }
    .tour-modal-title {
        font-size: 1.1rem;
    }
    .tour-modal-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 12px;
    }
}

/* === NAVIGATION DESKTOP & MOBILE === */
.desktop-nav {
    display: flex;
    gap: 24px;
    align-items: center;
}

.desktop-nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 4px;
}

.desktop-nav a:hover {
    color: #e4b35b;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, #e4b35b, #fcf6ba);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav .nav-tour {
    background: rgba(228, 179, 91, 0.15);
    border: 1px solid #e4b35b;
    padding: 6px 14px;
    border-radius: 20px;
    color: #fcf6ba;
}

.desktop-nav .nav-tour:hover {
    background: #e4b35b;
    color: #02213d;
}

.desktop-nav .nav-tour::after {
    display: none;
}

.desktop-nav .nav-contact {
    background: linear-gradient(135deg, #e4b35b, #b38728);
    color: #02213d !important;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.desktop-nav .nav-contact:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(228, 179, 91, 0.4);
}

.desktop-nav .nav-contact::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #e4b35b;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #e4b35b;
    flex-direction: column;
    padding: 20px 0;
    text-align: center;
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    padding: 14px 20px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-nav a:hover {
    color: #e4b35b;
    background: rgba(228, 179, 91, 0.1);
}

/* === FLOATING WHATSAPP VIP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.8);
    color: #ffffff;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: rgba(10, 15, 30, 0.92);
    border: 1px solid #e4b35b;
    color: #fcf6ba;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* === INFO SHOWCASE MODAL (VITRINES) === */
.info-modal-content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1000px;
    max-height: 85vh;
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(228, 179, 91, 0.5);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(228, 179, 91, 0.15);
}

.info-modal-body {
    padding: 30px 40px;
    overflow-y: auto;
    color: #e2e8f0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.info-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(228, 179, 91, 0.25);
    border-radius: 14px;
    padding: 22px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #e4b35b;
    background: rgba(30, 41, 59, 0.85);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.info-card h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    color: #fcf6ba;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #cbd5e1;
}

.contact-address-info {
    margin-top: 25px;
    text-align: center;
    font-size: 0.9rem;
    color: #cbd5e1;
    line-height: 1.8;
}

/* === RESPONSIVE NAVBAR & MODAL ADJUSTMENTS === */
@media (max-width: 992px) {
    .main-header { padding: 1rem 1.5rem; }
    .main-header.scrolled { padding: 0.7rem 1.5rem; }
    .desktop-nav { display: none !important; }
    .mobile-menu-btn { display: flex !important; align-items: center; justify-content: center; }
}

@media (max-width: 768px) {
    .main-header { padding: 0.8rem 1.2rem; }
    .logo-img { height: 45px; }
    .main-header.scrolled .logo-img { height: 40px; }
    
    .title {
        font-size: 2.7rem !important;
        letter-spacing: 1px;
    }
    
    .cursive-subtitle {
        font-size: 2.1rem !important;
        margin-top: -15px !important;
    }
    
    .description {
        font-size: 0.95rem;
        letter-spacing: 2px;
    }
    
    .buttons-wrapper {
        flex-direction: column;
        width: 92%;
        max-width: 320px;
        gap: 14px;
        margin-top: 25px;
    }
    
    .buttons-wrapper .btn-primary,
    .buttons-wrapper .btn-tour-360 {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.02rem;
        margin-top: 0;
        text-align: center;
        justify-content: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
    }
    .whatsapp-tooltip { display: none; }
    .info-modal-body { padding: 20px 18px; }
    .info-grid { grid-template-columns: 1fr; }
    
    .contact-container {
        flex-direction: column;
        gap: 40px;
        padding-top: 80px;
    }
    
    .left-contact-info {
        margin-top: 20px;
        align-items: center;
        text-align: center;
    }
}

/* === HOTSPOTS INTERATIVOS FLUTUANTES (PRAIA BRAVA & LITORAL SC) === */
.hotspots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8;
    pointer-events: none;
}

.hotspot-item {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    z-index: 9;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hotspot-item:hover {
    transform: scale(1.18);
    z-index: 25;
}

.hotspot-ring {
    position: absolute;
    width: 64px;
    height: 64px;
    border: 2px solid #e4b35b;
    border-radius: 50%;
    animation: hotspotPulseRing 2.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}

@keyframes hotspotPulseRing {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

.hotspot-dot {
    width: 46px;
    height: 46px;
    background: rgba(15, 23, 42, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #e4b35b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.85), 0 0 18px rgba(228, 179, 91, 0.45);
    transition: all 0.3s ease;
}

.hotspot-item:hover .hotspot-dot {
    background: #e4b35b;
    color: #02213d;
    box-shadow: 0 10px 30px rgba(228, 179, 91, 0.8);
}

.hotspot-tooltip {
    position: absolute;
    bottom: 60px;
    background: rgba(10, 15, 30, 0.96);
    border: 1px solid #e4b35b;
    color: #fcf6ba;
    padding: 10px 18px;
    border-radius: 14px;
    font-size: 0.88rem;
    font-weight: 600;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    transform: translateY(12px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.95);
}

.hotspot-tooltip small {
    display: block;
    color: #cbd5e1;
    font-size: 0.76rem;
    font-weight: 400;
    margin-top: 3px;
}

.hotspot-item:hover .hotspot-tooltip {
    opacity: 1;
    transform: translateY(0);
}

/* Posições Estratégicas dos Hotspots na Seção de Imóveis (Slide 2 - Afastados do texto central) */
.hotspot-pb { top: 22%; left: 16%; } /* No céu, no canto superior esquerdo da mansão como um drone/helicóptero livre das palavras */
.hotspot-bc { top: 34%; right: 12%; } /* Na ala direita do edifício, livre das palavras */
.hotspot-itapema { bottom: 18%; left: 18%; } /* No deck inferior esquerdo, abaixo dos botões centrais */

/* === OTIMIZAÇÃO DE VISIBILIDADE DO MOBILIÁRIO NO SLIDE 4 (MÓVEIS E DECOR) === */
.slide-4 .overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0.5) 100%);
}

.hotspot-sofa { bottom: 26%; left: 20%; }
.hotspot-iluminacao { top: 26%; right: 18%; }
.hotspot-marmore { bottom: 28%; right: 22%; }

@media (max-width: 768px) {
    .hotspots-container { 
        display: none; /* No celular priorizamos a limpeza visual e a visão total do fundo com os botões centrais */ 
    }
    
    /* === CORREÇÃO CRÍTICA PARA IOS / SAFARI MOBILE & ANDROID === */
    /* 1. Desativa o 'fixed' no mobile em TODOS os slides, resolvendo o bug de zoom de fundo no Safari iOS */
    .section-block,
    .slide-1, .slide-2, .slide-3, .slide-4, .slide-5, .slide-6 {
        background-attachment: scroll !important;
        background-size: cover !important;
    }

    /* 2. Altura dinâmica do viewport (dvh) para evitar cortes na barra do Safari */
    .section-block {
        min-height: -webkit-fill-available;
        min-height: 100dvh;
    }

    /* Mostrar muito mais os móveis na imagem de fundo no celular */
    .slide-4 {
        background-position: center bottom !important;
    }
    
    .slide-4 .slide-content {
        justify-content: flex-start !important;
        padding-top: 13vh !important;
    }
    
    .slide-4 .overlay {
        background: linear-gradient(to bottom, rgba(10, 15, 30, 0.88) 0%, rgba(10, 15, 30, 0.35) 32%, rgba(0, 0, 0, 0.08) 68%, rgba(0, 0, 0, 0.45) 100%) !important;
    }

    /* === CORREÇÃO DA SEÇÃO DE CONTATO NO MOBILE (RESOLVE AS SETAS E DESCENTRALIZAÇÃO) === */
    .slide-6 {
        height: auto !important;
        min-height: 100dvh !important;
        padding: 90px 15px 40px 15px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
    }

    .contact-container {
        width: 100% !important;
        max-width: 100% !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 30px !important;
        padding-top: 10px !important;
        padding-bottom: 20px !important;
    }

    /* Alinha e centraliza o Logo, Subtítulo, Ícones Sociais e Endereço */
    .left-contact-info {
        width: 100% !important;
        margin-top: 0 !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Faz a caixa do Formulário ocupar o centro da tela perfeitamente (sem ficar jogada de lado) */
    .form-box {
        width: 94% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
        padding: 28px 20px !important;
    }

    /* Evita zoom automático no Safari iOS ao tocar nos campos */
    .contact-form input,
    .contact-form textarea {
        font-size: 16px !important;
        -webkit-appearance: none;
        border-radius: 4px;
    }

    /* CORREÇÃO DA SETA À DIREITA: Tira o rodapé do canto direito absoluto e centraliza embaixo */
    .footer-bottom {
        position: relative !important;
        bottom: auto !important;
        right: auto !important;
        width: 100% !important;
        text-align: center !important;
        margin-top: 30px !important;
        padding: 15px 10px !important;
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
    }
}

/* Proteção extra para o motor WebKit em dispositivos Apple touch (iOS / Safari / iPadOS) */
@supports (-webkit-touch-callout: none) {
    .section-block,
    .slide-1, .slide-2, .slide-3, .slide-4, .slide-5, .slide-6 {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
        position: relative !important;
        overflow: hidden !important;
        transform: translateZ(0) !important;
        -webkit-transform: translateZ(0) !important;
    }
}
