/* ===================================
   Reset e Configurações Gerais
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Paleta de cores - Lago da Coruja */
    --primary-blue: #245473;
    --dark-blue: #1D4859;
    --olive-gold: #A6A160;
    --sandy-beige: #BFA584;
    --light-gray: #F2F2F2;
    --white: #ffffff;
    --dark-text: #2c2c2c;
    --light-text: #5a5a5a;
    
    /* Sombras e efeitos */
    --shadow-sm: 0 2px 8px rgba(36, 84, 115, 0.1);
    --shadow-md: 0 4px 16px rgba(36, 84, 115, 0.15);
    --shadow-lg: 0 8px 32px rgba(36, 84, 115, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Tipografia */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: Georgia, 'Times New Roman', serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--white);
}

/* ===================================
   Utilitários
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-family: var(--font-secondary);
    font-weight: 700;
    position: relative;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--olive-gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================================
   Animações
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===================================
   Header e Navegação
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--dark-blue);
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-logo i {
    font-size: 1.8rem;
    color: var(--olive-gold);
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--olive-gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--olive-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 28px;
    height: 3px;
    background: var(--dark-blue);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(29, 72, 89, 0.5), rgba(36, 84, 115, 0.6)), 
                url('https://customer-assets.emergentagent.com/job_sitio-temporada/artifacts/qu1kys52_foto.localoza%C3%A7%C3%A3o%20%281%29.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(29, 72, 89, 0.3), rgba(36, 84, 115, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-family: var(--font-secondary);
    margin-bottom: 24px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background: var(--olive-gold);
    color: var(--white);
    padding: 16px 48px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-btn i {
    margin-right: 10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    cursor: pointer;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
    opacity: 0.9;
}

/* ===================================
   Seção Sobre
   =================================== */
.sobre {
    padding: 100px 0;
    background: var(--light-gray);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.sobre-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--light-text);
    margin-bottom: 24px;
    text-align: justify;
}

.comodidades h3 {
    color: var(--dark-blue);
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-family: var(--font-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.comodidades h3 i {
    color: var(--olive-gold);
}

.comodidades-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}

.comodidade-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.comodidade-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--sandy-beige);
}

.comodidade-item i {
    font-size: 1.4rem;
    color: var(--olive-gold);
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.comodidade-item span {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.95rem;
}

.capacidade {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 24px;
    background: linear-gradient(135deg, var(--primary-blue), var(--olive-gold));
    color: var(--white);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.15rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.capacidade:hover {
    transform: scale(1.02);
}

.capacidade i {
    font-size: 1.8rem;
}

/* ===================================
   Galeria
   =================================== */
.galeria {
    padding: 100px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 84, 115, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3.5rem;
    color: var(--white);
    animation: pulse 1.5s infinite;
}

/* ===================================
   Modal da Galeria
   =================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

#modal-image {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: var(--white);
    font-size: 48px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close:hover {
    color: var(--olive-gold);
    transform: rotate(90deg);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 24px 18px;
    cursor: pointer;
    font-size: 1.8rem;
    border-radius: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.modal-nav:hover {
    background: rgba(166, 161, 96, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

/* ===================================
   Depoimentos
   =================================== */
.depoimentos {
    padding: 100px 0;
    background: var(--sandy-beige);
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.depoimento {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-left: 4px solid var(--olive-gold);
}

.depoimento:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-blue);
}

.depoimento-content {
    margin-bottom: 30px;
}

.depoimento-content i {
    font-size: 2.5rem;
    color: var(--sandy-beige);
    margin-bottom: 20px;
    opacity: 0.3;
}

.depoimento-content p {
    font-style: italic;
    line-height: 1.8;
    color: var(--light-text);
    font-size: 1.05rem;
}

.depoimento-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-gray);
}

.author-info h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
    font-weight: 600;
}

.author-info span {
    color: var(--light-text);
    font-size: 0.95rem;
}

.rating i {
    color: #f4a261;
    margin: 0 2px;
    font-size: 1.1rem;
}

/* ===================================
   Localização
   =================================== */
.localizacao {
    padding: 100px 0;
    background: var(--white);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.endereco {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.endereco-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.endereco-item:hover {
    background: var(--sandy-beige);
    transform: translateX(8px);
}

.endereco-item i {
    font-size: 1.8rem;
    color: var(--olive-gold);
    width: 32px;
    margin-top: 5px;
}

.endereco-item h4 {
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.endereco-item p {
    color: var(--light-text);
    line-height: 1.7;
}

.mapa {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mapa:hover {
    box-shadow: var(--shadow-lg);
}

.mapa iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 24px;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    width: fit-content;
}

.footer-section h3 i {
    color: var(--sandy-beige);
}

.logo-img-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    transition: var(--transition);
    padding: 8px 0;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    width: 24px;
    color: var(--sandy-beige);
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--olive-gold);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.8;
}

/* ===================================
   Botão Flutuante WhatsApp
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* ===================================
   Responsividade
   =================================== */
@media (max-width: 968px) {
    .sobre-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .localizacao-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .depoimentos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-md);
        padding: 30px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .comodidades-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .modal-nav {
        padding: 18px 14px;
        font-size: 1.5rem;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
    
    .close {
        top: 20px;
        right: 25px;
        font-size: 40px;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        font-size: 1.7rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .depoimento {
        padding: 30px 20px;
    }
}
