/* Reset e Variáveis */
:root {
    --verde-primario: #2d5016;
    --verde-secundario: #4a7c2a;
    --verde-claro: #6b9e3e;
    --verde-muito-claro: #a8d18c;
    --terra: #8b6f47;
    --terra-clara: #c4a574;
    --creme: #f5f1e8;
    --branco: #ffffff;
    --texto-escuro: #2c2c2c;
    --texto-medio: #555555;
    --sombra: rgba(0, 0, 0, 0.1);
    --sombra-forte: rgba(0, 0, 0, 0.2);
    
    --fonte-titulo: 'Playfair Display', serif;
    --fonte-texto: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--fonte-texto);
    color: var(--texto-escuro);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Black Friday Banner */
.black-friday-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    color: #fff;
    z-index: 1001;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    animation: blackFridayPulse 2s ease-in-out infinite;
}

@keyframes blackFridayPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 0, 0, 0.6);
    }
}

.black-friday-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    min-height: 50px;
    position: relative;
    padding-right: 180px;
}

.black-friday-text {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
}

.black-friday-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.black-friday-text-main {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 0 auto;
}

.black-friday-label {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: blackFridayShine 3s ease-in-out infinite;
}

@keyframes blackFridayShine {
    0%, 100% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 2px 2px 8px rgba(255, 215, 0, 0.8), 0 0 15px rgba(255, 215, 0, 0.5);
    }
}

.black-friday-desconto {
    font-weight: 800;
    font-size: 1.5rem;
    color: #ff0000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: blackFridayBounce 1s ease-in-out infinite;
}

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

.black-friday-message {
    font-size: 0.95rem;
    color: #fff;
}

.black-friday-periodo {
    font-size: 0.75rem;
    color: #ffd700;
    font-weight: 500;
    opacity: 0.9;
    line-height: 1;
}

.btn-black-friday {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    color: #fff;
    padding: 10px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.4);
    white-space: nowrap;
    position: absolute;
    right: 0;
}

.btn-black-friday:hover {
    background: linear-gradient(135deg, #cc0000 0%, #990000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 0, 0.6);
}

/* Ajustar header quando banner está visível */
body.has-black-friday-banner .header {
    top: 70px !important;
}

@media (max-width: 768px) {
    .black-friday-banner {
        padding: 8px 0;
        position: fixed;
        top: 0;
        z-index: 1002;
    }
    
    body.has-black-friday-banner .header {
        top: 85px !important;
    }
    
    .black-friday-content {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding-right: 0;
        min-height: auto;
    }
    
    .black-friday-text {
        width: 100%;
        gap: 0.5rem;
    }
    
    .black-friday-label {
        font-size: 0.9rem;
    }
    
    .black-friday-desconto {
        font-size: 1.2rem;
    }
    
    .black-friday-message {
        font-size: 0.85rem;
    }
    
    .black-friday-periodo {
        font-size: 0.7rem;
    }
    
    .btn-black-friday {
        position: static;
        margin-top: 0.5rem;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .black-friday-banner {
        padding: 6px 0;
    }
    
    body.has-black-friday-banner .header {
        top: 95px !important;
    }
    
    .black-friday-label,
    .black-friday-periodo {
        font-size: 0.75rem;
    }
    
    .black-friday-desconto {
        font-size: 1rem;
    }
    
    .black-friday-message {
        font-size: 0.75rem;
    }
    
    .btn-black-friday {
        padding: 6px 12px;
        font-size: 0.75rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px var(--sombra);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--texto-escuro);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-primario);
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--verde-primario);
}

.btn-reserva {
    background: var(--verde-primario);
    color: var(--branco) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-reserva::after {
    display: none;
}

.btn-reserva:hover {
    background: var(--verde-secundario);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--sombra);
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--verde-primario);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(135deg, var(--verde-primario) 0%, var(--verde-secundario) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><path d="M0,300 Q300,200 600,300 T1200,300 L1200,600 L0,600 Z" fill="rgba(255,255,255,0.1)"/></svg>') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(45, 80, 22, 0.3) 0%, rgba(45, 80, 22, 0.7) 100%);
}

.hero-content {
    position: absolute;
    z-index: 2;
    text-align: center;
    color: var(--branco);
    padding: 2rem;
    max-width: 800px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}

.hero-title {
    font-family: var(--fonte-titulo);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInContent 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    animation: fadeInContent 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInContent 1s ease 0.4s both;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 30px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Botões */
.btn-primary, .btn-secondary, .btn-chale, .btn-check {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--fonte-texto);
}

.btn-primary {
    background: var(--branco);
    color: var(--verde-primario);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: var(--verde-primario);
    color: var(--branco);
}

.btn-secondary:hover {
    background: var(--verde-secundario);
    transform: translateY(-2px);
}

.btn-chale {
    background: var(--verde-claro);
    color: var(--branco);
    width: 100%;
    text-align: center;
}

.btn-chale:hover {
    background: var(--verde-secundario);
}

.btn-check {
    background: var(--verde-primario);
    color: var(--branco);
    width: 100%;
}

.btn-check:hover {
    background: var(--verde-secundario);
}

/* Campos de Data Customizados */
.form-group-date {
    position: relative;
}

.date-input-wrapper {
    position: relative;
}

.date-input {
    cursor: pointer;
    background: var(--branco);
    border: 1px solid rgba(45, 80, 22, 0.2);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: var(--texto-escuro);
    width: 100%;
    transition: all 0.3s ease;
}

.date-input:hover {
    border-color: var(--verde-claro);
}

.date-input:focus {
    outline: none;
    border-color: var(--verde-primario);
    box-shadow: 0 0 0 3px rgba(45, 80, 22, 0.1);
}

/* Calendário Pop-up */
.datepicker-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10010; /* Acima do modal de consulta (10000) e modal de reserva (10000) */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: fadeIn 0.3s ease;
}

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

.datepicker-popup-content {
    background: var(--branco);
    border-radius: 12px;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
}

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

/* Calendário de Disponibilidade */
.calendario-wrapper {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--verde-claro);
}

.calendario-container {
    background: transparent;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
}

.calendario-loading {
    text-align: center;
    padding: 2rem;
    color: var(--texto-medio);
}

.calendario-meses {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.calendario-mes {
    background: var(--branco);
    border-radius: 10px;
    padding: 1.5rem;
    border: 1px solid rgba(45, 80, 22, 0.1);
}

.calendario-mes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--verde-claro);
}

.calendario-mes-title {
    font-family: var(--fonte-titulo);
    font-size: 1.5rem;
    color: var(--verde-primario);
    font-weight: 600;
}

.calendario-nav {
    display: flex;
    gap: 0.5rem;
}

.calendario-nav-btn {
    background: var(--verde-claro);
    color: var(--branco);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.calendario-nav-btn:hover {
    background: var(--verde-primario);
    transform: scale(1.1);
}

.calendario-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.calendario-dias-semana {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calendario-dia-semana {
    text-align: center;
    font-weight: 600;
    color: var(--verde-primario);
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.calendario-dias {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendario-dia {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem;
    font-size: 0.9rem;
    color: var(--texto-escuro);
    background: #f9f9f9;
}

.calendario-dia:hover {
    background: var(--verde-muito-claro);
    transform: scale(1.05);
}

.calendario-dia.vazio {
    visibility: hidden;
}

.calendario-dia.disponivel {
    background: var(--branco);
    border: 2px solid var(--verde-claro);
}

.calendario-dia.disponivel::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 8px;
    height: 8px;
    background: var(--verde-claro);
    border-radius: 50%;
    box-shadow: 0 0 4px rgba(74, 124, 42, 0.5);
}

.calendario-dia.reservado {
    background: #ffe0e0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.calendario-dia.reservado::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
}

.calendario-dia.bloqueado {
    background: #f0f0f0;
    color: #999;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendario-dia.hoje {
    background: var(--verde-muito-claro);
    border: 2px solid var(--verde-primario);
    font-weight: 700;
    color: var(--verde-primario);
}

.calendario-dia.hoje.disponivel::after {
    background: var(--verde-primario);
    box-shadow: 0 0 6px rgba(45, 80, 22, 0.7);
}

/* Estilos para datas selecionadas */
.calendario-dia.clicavel {
    cursor: pointer;
}

.calendario-dia.clicavel:hover {
    background: var(--verde-muito-claro);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(74, 124, 42, 0.3);
}

.calendario-dia.selecionado-checkin {
    background: var(--verde-primario) !important;
    color: var(--branco) !important;
    font-weight: 700;
    border: 2px solid var(--verde-primario);
    box-shadow: 0 0 12px rgba(45, 80, 22, 0.6);
    z-index: 2;
}

.calendario-dia.selecionado-checkin::after {
    background: var(--branco) !important;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.calendario-dia.selecionado-checkout {
    background: var(--verde-primario) !important;
    color: var(--branco) !important;
    font-weight: 700;
    border: 2px solid var(--verde-primario);
    box-shadow: 0 0 12px rgba(45, 80, 22, 0.6);
    z-index: 2;
}

.calendario-dia.selecionado-checkout::after {
    background: var(--branco) !important;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
}

.calendario-dia.entre-datas {
    background: var(--verde-claro) !important;
    color: var(--branco) !important;
    border: 1px solid var(--verde-secundario);
    position: relative;
}

.calendario-dia.entre-datas::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: var(--verde-claro);
    z-index: -1;
}

.calendario-dia.entre-datas::after {
    background: var(--branco) !important;
    opacity: 0.8;
}

/* Ajustar hover para datas selecionadas */
.calendario-dia.selecionado-checkin:hover,
.calendario-dia.selecionado-checkout:hover {
    transform: scale(1.08);
    box-shadow: 0 0 16px rgba(45, 80, 22, 0.8);
}

/* Preço Estimado */
.preco-estimado {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--verde-primario) 0%, var(--verde-secundario) 100%);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(45, 80, 22, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.preco-estimado-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--branco);
}

.preco-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.preco-valor {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--fonte-titulo);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.preco-detalhes {
    font-size: 0.85rem;
    opacity: 0.85;
    text-align: center;
}

@media (max-width: 768px) {
    .preco-estimado {
        padding: 1.2rem;
    }
    
    .preco-valor {
        font-size: 1.6rem;
    }
    
    .preco-detalhes {
        font-size: 0.8rem;
    }
}

.calendario-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 1rem;
    background: var(--branco);
    border-radius: 10px;
    box-shadow: 0 2px 10px var(--sombra);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--texto-medio);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.legend-dot.disponivel {
    background: var(--verde-claro);
    box-shadow: 0 0 4px rgba(74, 124, 42, 0.5);
}

.legend-dot.reservado {
    background: #ff6b6b;
}

.legend-dot.hoje {
    background: var(--verde-primario);
    border: 2px solid var(--verde-claro);
}

@media (max-width: 768px) {
    .calendario-container {
        padding: 0.5rem 0;
    }
    
    .calendario-meses {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .calendario-mes {
        padding: 1rem;
    }
    
    .calendario-dia {
        font-size: 0.8rem;
        padding: 0.3rem;
    }
    
    .calendario-legend {
        gap: 1rem;
        font-size: 0.85rem;
    }
}

/* Reserva Rápida */
.reserva-rapida {
    background: var(--creme);
    padding: 3rem 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.reserva-box {
    background: var(--branco);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--sombra);
    max-width: 1200px;
    margin: 0 auto;
}

.reserva-box h3 {
    font-family: var(--fonte-titulo);
    color: var(--verde-primario);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.8rem;
}


.form-reserva {
    display: grid;
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr 1.5fr;
    gap: 1.5rem;
    align-items: end;
}

.form-group-button {
    display: flex;
    flex-direction: column;
}

.form-group-button .btn-check {
    margin-top: 1.5rem;
    height: fit-content;
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
    width: 100%;
}

.form-group-with-button {
    margin-right: 0;
}

@media (max-width: 1024px) {
    .form-reserva {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .form-group-button {
        grid-column: span 3;
    }
}

@media (max-width: 768px) {
    .form-reserva {
        grid-template-columns: 1fr;
    }
    
    .form-group-button {
        grid-column: span 1;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--texto-escuro);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--fonte-texto);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--verde-primario);
}

/* Seções */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-family: var(--fonte-titulo);
    font-size: 2.5rem;
    color: var(--verde-primario);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--texto-medio);
}

/* Sobre */
.sobre {
    background: var(--branco);
}

.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.sobre-text p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--texto-medio);
    line-height: 1.8;
}

.sobre-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--creme);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: var(--verde-primario);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature-item p {
    color: var(--texto-medio);
    font-size: 0.9rem;
}

/* Chalés */
.chales {
    background: var(--creme);
}

.chales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.chale-card {
    background: var(--branco);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--sombra);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chale-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--sombra-forte);
}

.chale-image {
    height: 250px;
    background: linear-gradient(135deg, var(--verde-claro) 0%, var(--verde-secundario) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.chale-card:hover .chale-image img {
    transform: scale(1.1);
}

.chale-placeholder {
    font-size: 4rem;
    opacity: 0.7;
}

.chale-info {
    padding: 1.5rem;
}

.chale-info h3 {
    font-family: var(--fonte-titulo);
    color: var(--verde-primario);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.chale-info p {
    color: var(--texto-medio);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.chale-amenities {
    list-style: none;
    margin-bottom: 1.5rem;
}

.chale-amenities li {
    color: var(--texto-medio);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

/* Galeria */
.galeria {
    background: var(--branco);
}

/* Carrossel de Galeria */
.galeria-carousel-container {
    position: relative;
    max-width: 100%;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.galeria-carousel {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

.galeria-slide {
    min-width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.galeria-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.galeria-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    cursor: pointer;
}

.galeria-slide:hover .galeria-overlay {
    opacity: 1;
    pointer-events: all;
}

.galeria-overlay span {
    color: var(--branco);
    font-size: 1.5rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Controles do Carrossel */
.galeria-carousel-prev,
.galeria-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 30px;
    color: var(--verde-primario);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.galeria-carousel-prev:hover,
.galeria-carousel-next:hover {
    background: var(--branco);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.galeria-carousel-prev {
    left: 20px;
}

.galeria-carousel-next {
    right: 20px;
}

/* Indicadores */
.galeria-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.galeria-carousel-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid var(--branco);
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeria-carousel-indicator.active {
    background: var(--branco);
    transform: scale(1.2);
}

.galeria-carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
}

/* Grid antigo (mantido para compatibilidade) */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.galeria-item {
    height: 300px;
    background: linear-gradient(135deg, var(--verde-muito-claro) 0%, var(--verde-claro) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

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

.galeria-placeholder {
    color: var(--branco);
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Responsivo - Carrossel */
@media (max-width: 768px) {
    .galeria-slide {
        height: 350px;
    }
    
    .galeria-carousel-prev,
    .galeria-carousel-next {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .galeria-carousel-prev {
        left: 10px;
    }
    
    .galeria-carousel-next {
        right: 10px;
    }
    
    .galeria-overlay span {
        font-size: 1.2rem;
    }
}

/* Proximidades */
.proximidades {
    background: var(--creme);
}

.proximidades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.proximidade-item {
    flex: 0 1 calc(25% - 1.5rem);
    min-width: 250px;
}

/* Forçar os 3 últimos a ficarem centralizados */
.proximidade-item:nth-child(n+5) {
    flex: 0 1 calc(25% - 1.5rem);
}

@media (max-width: 1200px) {
    .proximidade-item {
        flex: 0 1 calc(33.333% - 1.5rem);
    }
}

@media (max-width: 900px) {
    .proximidade-item {
        flex: 0 1 calc(50% - 1rem);
    }
}

.proximidade-item {
    background: var(--branco);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 15px var(--sombra);
    transition: transform 0.3s ease;
}

.proximidade-item:hover {
    transform: translateY(-5px);
}

.proximidade-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.proximidade-item h4 {
    color: var(--verde-primario);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.proximidade-item p {
    color: var(--texto-medio);
    font-size: 0.95rem;
    text-align: center;
}

/* Localização */
.localizacao {
    background: var(--branco);
}

.localizacao-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.mapa-container {
    height: 400px;
    background: var(--creme);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px var(--sombra);
    position: relative;
    overflow: hidden;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 15px;
}

.mapa-fallback {
    display: none;
    text-align: center;
    padding: 1rem;
}

.mapa-fallback img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mapa-placeholder {
    text-align: center;
    color: var(--texto-medio);
}

.mapa-placeholder p {
    margin-bottom: 0.5rem;
}

.instrucoes {
    background: var(--creme);
    padding: 2rem;
    border-radius: 15px;
}

.instrucoes h3 {
    font-family: var(--fonte-titulo);
    color: var(--verde-primario);
    margin-bottom: 1.5rem;
}

.instrucoes ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.instrucoes li {
    margin-bottom: 0.8rem;
    color: var(--texto-medio);
}

.aviso {
    background: var(--verde-muito-claro);
    padding: 1rem;
    border-radius: 8px;
    color: var(--verde-primario);
    font-weight: 600;
}

/* FAQ */
.faq {
    background: var(--creme);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--branco);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--sombra);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--creme);
}

.faq-question h4 {
    color: var(--verde-primario);
    font-size: 1.1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--verde-primario);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--texto-medio);
}

/* Reserva */
.reserva {
    background: var(--branco);
}

.reserva-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-reserva-completo {
    background: var(--creme);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--sombra);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: var(--fonte-texto);
    font-size: 1rem;
    resize: vertical;
    transition: border-color 0.3s ease;
}

.form-group textarea:focus {
    outline: none;
    border-color: var(--verde-primario);
}

/* Avaliações Google */
.avaliacoes {
    background: var(--branco);
    padding: 5rem 0;
}

.avaliacoes-stats {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-item {
    display: inline-block;
}

.stats-rating {
    font-size: 3rem;
    font-weight: 700;
    color: var(--verde-primario);
    font-family: var(--fonte-titulo);
    line-height: 1;
}

.stats-total {
    font-size: 1rem;
    color: var(--texto-medio);
    margin-top: 0.5rem;
}

.avaliacoes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.avaliacao-card {
    background: var(--creme);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 3px 15px var(--sombra);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.avaliacao-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--sombra-forte);
}

.avaliacao-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.avaliacao-autor {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.avaliacao-foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avaliacao-foto-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--verde-primario);
    color: var(--branco);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.avaliacao-info h4 {
    color: var(--verde-primario);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.avaliacao-data {
    font-size: 0.85rem;
    color: var(--texto-medio);
}

.avaliacao-rating {
    flex-shrink: 0;
}

.estrelas {
    display: flex;
    gap: 2px;
}

.estrela {
    font-size: 1.2rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.estrela.preenchida {
    color: #ffc107;
}

.avaliacao-texto {
    color: var(--texto-medio);
    line-height: 1.6;
    margin-top: 1rem;
    font-size: 0.95rem;
}

.avaliacao-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--verde-primario);
    color: var(--branco);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
}

.avaliacao-loading,
.avaliacao-empty,
.avaliacao-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: var(--texto-medio);
}

.avaliacao-error {
    color: #d32f2f;
}

.avaliacoes-link {
    text-align: center;
    margin-top: 2rem;
}

/* Footer */
.footer {
    background: var(--verde-primario);
    color: var(--branco);
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: var(--fonte-titulo);
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--branco);
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--branco);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-features {
        grid-template-columns: 1fr;
    }
    
    .proximidade-item {
        flex: 0 1 calc(50% - 1rem);
    }

    .localizacao-content {
        grid-template-columns: 1fr;
    }

    .form-reserva {
        grid-template-columns: 1fr;
    }
    
    .form-group-button .btn-check {
        margin-top: 0;
    }
    
    .chales-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .avaliacoes-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-rating {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .reserva-box,
    .form-reserva-completo {
        padding: 1.5rem;
    }
    
    .proximidades-grid {
        grid-template-columns: 1fr;
    }
}

/* Animações para mensagens */
@keyframes slideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Loading state para botões */
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Otimização de imagens */
img {
    max-width: 100%;
    height: auto;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Modal de Reserva */
.modal-reserva {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-reserva-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-reserva-content {
    position: relative;
    background: var(--branco);
    border-radius: 20px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    z-index: 10001;
}

.modal-reserva-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 2.5rem;
    color: var(--texto-medio);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10002;
    line-height: 1;
    padding: 0;
}

.modal-reserva-close:hover {
    background: var(--creme);
    color: var(--verde-primario);
    transform: rotate(90deg);
}

.modal-reserva-header {
    padding: 2.5rem 2.5rem 1.5rem;
    border-bottom: 2px solid var(--creme);
    text-align: center;
}

.modal-reserva-header h2 {
    font-family: var(--fonte-titulo);
    font-size: 2rem;
    color: var(--verde-primario);
    margin-bottom: 0.5rem;
}

.modal-reserva-body {
    padding: 2rem 2.5rem 2.5rem;
}

.modal-reserva-body .form-reserva-completo {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

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

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

/* Responsivo para Modal */
@media (max-width: 768px) {
    .modal-reserva-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .modal-reserva-header {
        padding: 2rem 1.5rem 1rem;
    }
    
    .modal-reserva-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-reserva-body {
        padding: 1.5rem;
    }
    
    .modal-reserva-close {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 2rem;
        width: 35px;
        height: 35px;
    }
    
    .modal-reserva-body .form-reserva-completo {
        padding: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Modal de Consulta de Disponibilidade */

/* Botão WhatsApp Flutuante */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.whatsapp-button:active {
    transform: scale(0.95);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--texto-escuro);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    font-family: var(--fonte-texto);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--texto-escuro);
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
}

/* Responsivo - Botão WhatsApp */
@media (max-width: 768px) {
    .whatsapp-button {
        width: 56px;
        height: 56px;
        bottom: 16px;
        right: 16px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .whatsapp-tooltip {
        display: none; /* Ocultar tooltip no mobile para economizar espaço */
    }
}

/* Lightbox para Galeria */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    cursor: grab;
}

.lightbox-content img:active {
    cursor: grabbing;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    margin: 0 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

.lightbox-title {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 6px;
}

.lightbox-zoom-controls {
    position: absolute;
    top: -40px;
    left: 0;
    display: flex;
    gap: 10px;
}

.lightbox-zoom-in,
.lightbox-zoom-out,
.lightbox-reset {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-zoom-in:hover,
.lightbox-zoom-out:hover,
.lightbox-reset:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: white;
    transform: scale(1.1);
}

/* Responsivo - Lightbox */
@media (max-width: 768px) {
    .lightbox-controls {
        top: auto;
        bottom: 20px;
        transform: none;
    }
    
    .lightbox-prev,
    .lightbox-next {
        margin: 0 10px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        font-size: 30px;
    }
    
    .lightbox-title {
        bottom: 60px;
        font-size: 1rem;
    }
    
    .lightbox-zoom-controls {
        top: 10px;
        left: 10px;
    }
    
    .lightbox-zoom-in,
    .lightbox-zoom-out,
    .lightbox-reset {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}


