/* Reset e configurações básicas */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #000000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 50px;
    width: auto;
}

/* Navegação */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: #F7931E;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #023A8D;
    color: white;
}

/* Main Content */
.main {
    margin-top: 80px;
    position: relative;
    z-index: 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #000000 0%, #0A2D41 50%, #1a4a6b 100%);
    padding: 6rem 0;
    color: white;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: none;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-social p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.hero-video {
    width: 100%;
    max-width: none;
    margin: 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video iframe {
    width: 100%;
    max-width: 320px;
    height: 568px;
    aspect-ratio: 9/16;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 1;
}

/* Botões */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #F7931E 0%, #ffa726 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

.btn-secondary {
    background: #023A8D;
    color: white;
    box-shadow: 0 4px 15px rgba(2, 58, 141, 0.3);
    position: relative;
    z-index: 1;
}

.btn-secondary:hover {
    background: #F7931E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.4);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.3);
    position: relative;
    z-index: 1;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.instagram-icon {
    width: 20px;
    height: 20px;
    fill: white;
    position: relative;
    z-index: 1;
}

/* Seções */
.experience {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.experience-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.experience-content h2 {
    font-size: 2.5rem;
    color: #023A8D;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.experience-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.features {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 3;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 3;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    border-radius: 10px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-card h3 {
    color: #023A8D;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 3;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 3;
}

.location-info {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 4;
}

.location-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.location-content h2 {
    font-size: 2.5rem;
    color: #023A8D;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 4;
}

.location-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 4;
}

.location-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 4;
}

.location-feature {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #F7931E;
    position: relative;
    z-index: 4;
}

.location-feature h3 {
    color: #023A8D;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 4;
}

.location-feature p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 4;
}

.location-note {
    background: #e3f2fd;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #023A8D;
    margin: 2rem 0;
    font-style: italic;
    position: relative;
    z-index: 4;
}

.stats {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 5;
}

.stats-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.stats-content h2 {
    font-size: 2.5rem;
    color: #023A8D;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 5;
}

.stats-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 5;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 5;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #F7931E;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 5;
}

.stat-label {
    color: #023A8D;
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    z-index: 5;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 5;
}

.review-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
    z-index: 5;
}

.review-item p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    position: relative;
    z-index: 5;
}

.stars {
    color: #F7931E;
    font-size: 1.5rem;
    position: relative;
    z-index: 5;
}

/* Reviews Section - Image-Focused Gallery */
.reviews-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    z-index: 6;
    overflow: hidden;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #023A8D, transparent);
    z-index: 6;
}

.reviews-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 6;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F7931E, #ffa726);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.3);
    position: relative;
    z-index: 6;
}

.reviews-header h2 {
    font-size: 2.8rem;
    color: #023A8D;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    z-index: 6;
    line-height: 1.2;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 300px;
    position: relative;
    z-index: 6;
}

.rating-stars {
    display: flex;
    gap: 0.2rem;
    position: relative;
    z-index: 6;
}

.rating-stars .star {
    color: #F7931E;
    font-size: 1.3rem;
    position: relative;
    z-index: 6;
}

.rating-number {
    font-size: 2rem;
    font-weight: 700;
    color: #023A8D;
    position: relative;
    z-index: 6;
}

.rating-text {
    font-size: 0.9rem;
    color: #666;
    position: relative;
    z-index: 6;
}

.reviews-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 6;
}

.review-item {
    position: relative;
    z-index: 6;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 1;
}

.review-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.review-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    z-index: 6;
    background: linear-gradient(135deg, #023A8D, #F7931E);
}

/* Removido CSS conflitante - usando apenas o .main-image da galeria */

.review-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #023A8D, #F7931E);
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-image:has(img:not([src]))::before,
.review-image:has(img[src=""])::before {
    opacity: 1;
}

.review-item:hover img {
    transform: scale(1.05);
}

.reviews-cta {
    text-align: center;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 6;
}

.cta-text {
    font-size: 1.2rem;
    color: #023A8D;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    z-index: 6;
}

/* Comfort Section */
.comfort-section {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 7;
}

.comfort-header {
    margin-bottom: 2rem;
    position: relative;
    z-index: 7;
}

.comfort-header h2 {
    font-size: 2.5rem;
    color: #023A8D;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 7;
}

.comfort-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 7;
}

.comfort-item {
    position: relative;
    z-index: 7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    aspect-ratio: 3/4;
}

.comfort-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.comfort-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 7;
}

.comfort-item:hover .comfort-image {
    transform: scale(1.05);
}

.accommodations {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 8;
}

.accommodations-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 8;
}

.accommodations-header h2 {
    font-size: 2.5rem;
    color: #023A8D;
    margin-bottom: 2rem;
    font-weight: 600;
    position: relative;
    z-index: 8;
}

.accommodations-header p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    position: relative;
    z-index: 8;
}

.accommodations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 8;
}

.accommodation-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 8;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.accommodation-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    position: relative;
    z-index: 8;
    aspect-ratio: 1;
}

.card-content {
    padding: 1.5rem;
    position: relative;
    z-index: 8;
}

.card-content h3 {
    color: #023A8D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 8;
}

.card-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 8;
}

.card-content .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 8;
}

/* Check-in Section */
.checkin-section {
    background: linear-gradient(135deg, #023A8D 0%, #1e4a9e 100%);
    padding: 4rem 0;
    position: relative;
    z-index: 8;
}

.checkin-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 8;
}

.checkin-text {
    color: white;
    position: relative;
    z-index: 8;
}

.checkin-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    position: relative;
    z-index: 8;
}

.checkin-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 8;
}

.checkin-item {
    text-align: center;
    position: relative;
    z-index: 8;
}

.checkin-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #F7931E;
    margin-bottom: 0.5rem;
    font-family: 'Dancing Script', cursive;
    position: relative;
    z-index: 8;
}

.checkin-time {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 8;
}

.time-display {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 8;
}

.checkin-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, #F7931E, transparent);
    position: relative;
    z-index: 8;
}

.checkin-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1rem;
    position: relative;
    z-index: 8;
}

.checkin-image {
    display: none;
    position: relative;
    z-index: 8;
}

.checkin-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    position: relative;
    z-index: 8;
}

    .checkin-image img:hover {
    transform: scale(1.02);
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: transparent;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.whatsapp-btn:active {
    transform: translateY(-1px) scale(1.05);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
    color: #25D366;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.3));
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover .whatsapp-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Animação de pulsação */
@keyframes pulse {
    0% {
        filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.3));
    }
    50% {
        filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.6)) drop-shadow(0 0 15px rgba(37, 211, 102, 0.4));
    }
    100% {
        filter: drop-shadow(0 2px 8px rgba(37, 211, 102, 0.3));
    }
}

/* Efeito de ondas quando clicado */
.whatsapp-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.whatsapp-btn:active::before {
    width: 80px;
    height: 80px;
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Responsividade para o botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 10px;
        right: 10px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon {
        width: 24px;
        height: 24px;
    }
}

/* Tooltip do WhatsApp */
.whatsapp-tooltip {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
    pointer-events: none;
    z-index: 10000;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    right: 15px;
    border: 5px solid transparent;
    border-top-color: rgba(0, 0, 0, 0.9);
}

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

/* Classe para efeito de clique */
.whatsapp-btn.clicked {
    transform: scale(0.95);
    transition: transform 0.1s ease;
}

/* Footer */
.footer {
    background: #000000;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    z-index: 9;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 9;
}

.footer-section {
    position: relative;
    z-index: 9;
}

.footer-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-graphic {
    margin-bottom: 1rem;
    position: relative;
    z-index: 9;
}

.footer-logo {
    height: 50px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    position: relative;
    z-index: 9;
}

.footer-title {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 9;
}

.social-icon {
    margin-top: auto;
    position: relative;
    z-index: 9;
}

.social-icon a {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 9;
}

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

.instagram-icon {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    fill: none;
    position: relative;
    z-index: 9;
}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-info p {
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 9;
}

.contact-info strong {
    color: #F7931E;
    position: relative;
    z-index: 9;
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.address-info p {
    margin: 0.3rem 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    position: relative;
    z-index: 9;
}

.maps-section {
    margin-top: 1rem;
    position: relative;
    z-index: 9;
}

.maps-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 9;
}

.maps-icon {
    margin-top: 0.5rem;
    position: relative;
    z-index: 9;
}

.maps-icon a {
    display: inline-block;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 9;
}

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

.google-maps-icon {
    width: 24px;
    height: 24px;
    fill: white;
    position: relative;
    z-index: 9;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
    position: relative;
    z-index: 9;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
    position: relative;
    z-index: 9;
}

/* Página de Contato */
.page-hero {
    background: linear-gradient(135deg, #023A8D 0%, #1e4a9e 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.contact-section {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 2rem;
    color: #023A8D;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-info p {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.contact-items {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.contact-item {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact-item h3 {
    color: #023A8D;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.contact-item p {
    color: #666;
    font-size: 1.1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.address-section {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #F7931E;
    position: relative;
    z-index: 2;
}

.address-section h3 {
    color: #023A8D;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.address-section p {
    color: #666;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.address-section p strong {
    color: #023A8D;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.contact-form h2 {
    color: #023A8D;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.form-group label {
    display: block;
    color: #023A8D;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: white;
    position: relative;
    z-index: 2;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #F7931E;
    box-shadow: 0 0 0 3px rgba(247, 147, 30, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    padding: 4rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 3;
}

.map-section h2 {
    text-align: center;
    color: #023A8D;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
    z-index: 3;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    position: relative;
    z-index: 3;
}

/* Responsividade para página de contato */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .address-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 0;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-section {
        padding: 3rem 0;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .address-section {
        padding: 1rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

/* Cards Section para Quitinetes */
.cards-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-content {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-content h2 {
    color: #023A8D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    line-height: 1.3;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card-content p:last-child {
    margin-bottom: 0;
}

/* Botões de Reserva */
.booking-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.booking-actions .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 180px;
}

/* Responsividade para botões de reserva */
@media (max-width: 768px) {
    .booking-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .booking-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Accommodation Detail Section */
.accommodation-detail {
    padding: 4rem 0;
    background: white;
    position: relative;
    z-index: 2;
}

.accommodation-content {
    position: relative;
    z-index: 2;
}

.accommodation-images {
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

/* Garantir que a imagem principal seja sempre visível com qualidade */
#main-gallery-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
}

.main-image {
    width: 100%;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 2;
    display: block;
    opacity: 1;
}

/* Removido efeito de escala para manter qualidade */

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 2;
    border: 3px solid transparent;
    opacity: 0.7;
}

.thumbnail:hover {
    transform: scale(1.1);
    opacity: 1;
    border-color: #F7931E;
}

.thumbnail.active {
    border-color: #023A8D;
    opacity: 1;
    transform: scale(1.05);
}

/* Responsividade para Cards */
@media (max-width: 768px) {
    .cards-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .card-content {
        padding: 1.5rem;
    }
    
    .card-content h2 {
        font-size: 1.3rem;
    }
    
    .main-image {
        height: 280px;
    }
    
    .gallery-thumbnails {
        gap: 0.8rem;
    }
    
    .thumbnail {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .cards-section {
        gap: 1rem;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-content h2 {
        font-size: 1.2rem;
    }
    
    .main-image {
        height: 220px;
    }
    
    .gallery-thumbnails {
        gap: 0.6rem;
    }
    
    .thumbnail {
        width: 60px;
        height: 60px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        position: relative;
        z-index: 0;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        height: auto;
        padding: 1rem 0;
        position: relative;
        z-index: 1000;
    }
    
    .header {
        height: auto;
        position: relative;
        z-index: 1000;
    }
    
    .main {
        margin-top: 0;
        position: relative;
        z-index: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
        position: relative;
        z-index: 1000;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 0;
        position: relative;
        z-index: 1000;
    }
    
    .dropdown-menu a {
        color: white;
        padding: 0.5rem 1rem;
        position: relative;
        z-index: 1000;
    }
    
    .hero {
        padding: 4rem 0;
        position: relative;
        z-index: 1;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
        position: relative;
        z-index: 1;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        position: relative;
        z-index: 1;
    }
    
    .hero-video iframe {
        height: 400px;
        max-width: 280px;
        position: relative;
        z-index: 1;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        position: relative;
        z-index: 3;
    }
    
    .location-features {
        grid-template-columns: 1fr;
        position: relative;
        z-index: 4;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        position: relative;
        z-index: 5;
    }
    
    .reviews {
        grid-template-columns: 1fr;
        position: relative;
        z-index: 5;
    }
    
    .reviews-header h2 {
        font-size: 2.2rem;
        position: relative;
        z-index: 6;
    }
    
    .overall-rating {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
        position: relative;
        z-index: 6;
    }
    
    .rating-number {
        font-size: 1.8rem;
        position: relative;
        z-index: 6;
    }
    
    .reviews-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        position: relative;
        z-index: 6;
    }
    
    .review-item {
        aspect-ratio: 1;
        position: relative;
        z-index: 6;
    }
    
    .comfort-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        position: relative;
        z-index: 7;
    }
    
    .comfort-header h2 {
        font-size: 2rem;
        position: relative;
        z-index: 7;
    }
    
    .reviews-cta {
        padding: 2rem 1.5rem;
        position: relative;
        z-index: 6;
    }
    
    .accommodations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.5rem;
        position: relative;
        z-index: 8;
    }
    
    .accommodation-card img {
        height: 200px;
        aspect-ratio: 1;
        position: relative;
        z-index: 8;
    }
    
    .checkin-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .checkin-text {
        display: none;
    }
    
    .checkin-image {
        display: block;
    }
    
    .checkin-image img {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        position: relative;
        z-index: 9;
    }
    
    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center;
        align-items: center;
    }
    
    .footer-graphic {
        margin: 0 auto 1rem;
        text-align: center;
    }
    
    .footer-logo {
        height: 45px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
        position: relative;
        z-index: 1;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        position: relative;
        z-index: 1;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        position: relative;
        z-index: 1;
    }
    
    .hero-video iframe {
        height: 350px;
        max-width: 250px;
        position: relative;
        z-index: 1;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        position: relative;
        z-index: 5;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        position: relative;
        z-index: 1;
    }
    
    .experience-content h2,
    .location-content h2,
    .stats-content h2,
    .accommodations-header h2 {
        font-size: 2rem;
        position: relative;
        z-index: 2;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        position: relative;
        z-index: 3;
    }
    
    .feature-image {
        height: 150px;
    }
    
    .reviews-section {
        padding: 4rem 0;
        position: relative;
        z-index: 6;
    }
    
    .reviews-header h2 {
        font-size: 1.8rem;
        position: relative;
        z-index: 6;
    }
    
    .reviews-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
        position: relative;
        z-index: 6;
    }
    
    .review-item {
        aspect-ratio: 1;
        max-width: 300px;
        margin: 0 auto;
        position: relative;
        z-index: 6;
    }
    
    .comfort-gallery {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        position: relative;
        z-index: 7;
    }
    
    .comfort-header h2 {
        font-size: 1.8rem;
        position: relative;
        z-index: 7;
    }
    
    .comfort-item {
        max-width: 250px;
        margin: 0 auto;
        position: relative;
        z-index: 7;
    }
    
    .accommodations-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
        gap: 1rem;
        position: relative;
        z-index: 8;
    }
    
    .accommodation-card img {
        height: 180px;
        aspect-ratio: 1;
        position: relative;
        z-index: 8;
    }
    
    .checkin-content {
        gap: 1.5rem;
    }
    
    .checkin-text {
        display: none;
    }
    
    .checkin-image {
        display: block;
    }
    
    .checkin-image img {
        height: 250px;
    }
    
}