/* --- Variáveis CSS --- */
:root {
    --primary-color: #1b263b;
    --accent-color: #e2ab18;
    --text-color: #555;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

/* --- Reset Básico --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
    margin-top: 15px;
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: scale(1.05);
}

/* ========================================
   ANIMAÇÕES - KEYFRAMES
======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.95);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes slideInRotate {
    from {
        opacity: 0;
        transform: translateX(-100px) rotate(-15deg);
    }

    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Top Bar --- */
.top-bar {
    background-color: var(--primary-color);
    color: #ccc;
    padding: 10px 0;
    font-size: 13px;
    animation: fadeInDown 0.6s ease both;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
}

.contact-info i {
    color: var(--accent-color);
    margin-right: 5px;
}

.top-bar a {
    text-decoration: none;
    color: #ccc;
    padding: 0 10px;
    transition: var(--transition);
}

.top-bar a:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.top-bar a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* --- Header --- */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: fadeInDown 0.8s ease both;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    animation: slideInRotate 1s ease both;
}

.logo span {
    color: var(--accent-color);
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li {
    opacity: 0;
    animation: fadeInDown 0.6s ease forwards;
}

nav ul li:nth-child(1) {
    animation-delay: 0.1s;
}

nav ul li:nth-child(2) {
    animation-delay: 0.2s;
}

nav ul li:nth-child(3) {
    animation-delay: 0.3s;
}

nav ul li:nth-child(4) {
    animation-delay: 0.4s;
}

nav ul li:nth-child(5) {
    animation-delay: 0.5s;
}

nav ul li a {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary-color);
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.header-actions .btn {
    padding: 10px 20px;
    margin-left: 10px;
    animation: bounceIn 1s ease both;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* --- Hero Section (Slider) --- */
.hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    background-color: var(--primary-color);
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.5s ease;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
}

.slide-content h1 {
    font-size: 60px;
    margin-bottom: 15px;
    color: var(--white);
    animation: fadeInUp 1s ease both;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
    animation: fadeInUp 1.2s ease both;
}

.slide-content .btn {
    animation: bounceIn 1.5s ease both;
}

/* Setas de Navegação */
.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.nav-btn {
    background: rgba(0, 0, 0, 0.3);
    color: var(--white);
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 20px;
    transition: var(--transition);
    pointer-events: all;
    opacity: 0.8;
    border-radius: 5px;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.6);
    opacity: 1;
    transform: scale(1.1);
}

#prevBtn {
    margin-left: 20px;
}

#nextBtn {
    margin-right: 20px;
}

/* Pontos Indicadores */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.dot:hover {
    transform: scale(1.3);
}

/* --- Booking Form --- */
.booking-form-wrapper {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.booking-form {
    background: var(--white);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.form-group {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.form-group:nth-child(1) {
    animation-delay: 0.2s;
}

.form-group:nth-child(2) {
    animation-delay: 0.3s;
}

.form-group:nth-child(3) {
    animation-delay: 0.4s;
}

.form-group:nth-child(4) {
    animation-delay: 0.5s;
}

.form-group:nth-child(5) {
    animation-delay: 0.6s;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.form-group select,
.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    color: #666;
    transition: all 0.3s ease;
}

.form-group select:focus,
.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 164, 126, 0.2);
}

/* --- Sections e Grid --- */
.section-padding {
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    opacity: 0;
    animation: bounceIn 1s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-item h3 {
    font-size: 36px;
    color: var(--accent-color);
}

.facilities {
    background-color: var(--light-bg);
    text-align: center;
}

.section-header {
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.facility-card {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    opacity: 1;
}

.facility-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.facility-card i {
    font-size: 24px;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.facility-card:hover i {
    transform: rotate(360deg) scale(1.2);
}

.facility-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.facility-card p {
    font-size: 13px;
    color: #777;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    opacity: 1;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.room-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img img {
    transform: scale(1.1) rotate(2deg);
}

.room-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
}

.room-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
}

.room-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.room-features {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 13px;
    color: #888;
}

.room-features span i {
    color: var(--accent-color);
    margin-right: 5px;
}

.room-book-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
}

/* --- Slider de Imagens nos Quartos --- */
.room-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.room-slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.room-slide {
    min-width: 100%;
    height: 100%;
}

.room-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
}

.room-slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 5;
    pointer-events: none;
}

.room-nav-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    pointer-events: all;
    opacity: 0;
}

.room-card:hover .room-nav-btn {
    opacity: 1;
}

.room-nav-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.room-slider-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.room-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.room-dot.active {
    background: var(--accent-color);
    width: 20px;
    border-radius: 4px;
}

/* --- Depoimentos --- */
.testimonials {
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    text-align: left;
    height: 100%;
    opacity: 1;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card .rating {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-card .quote {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-card .author-name {
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-top: 10px;
}

.testimonial-card .author-role {
    font-size: 13px;
    color: var(--text-color);
}

/* --- Popup de Imagem --- */
.image-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.image-popup.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleIn 0.5s ease;
}

.popup-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.popup-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-slide img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.popup-close:hover {
    color: var(--accent-color);
    transform: rotate(90deg) scale(1.2);
}

.popup-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.popup-nav-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.popup-nav-btn:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

/* --- Galeria --- */
.gallery-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 1;
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(3deg);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 38, 59, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* --- Banner de Destinos Full Viewport --- */
.destinations-banner-section {
    position: relative;
    min-height: 100vh;
    background-image: url('img/pousada-img/visao_alto_\ piscina2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.destinations-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.92), rgba(197, 164, 126, 0.85));
}

.destinations-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.destinations-text-content {
    max-width: 900px;
    margin: 50px auto 0;
    text-align: left;
}

.destination-text-item {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    opacity: 1;
}

.destination-text-item:hover {
    transform: translateY(-5px) rotate(-1deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.destination-text-item h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-text-item h3 i {
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.3s ease;
}

.destination-text-item:hover h3 i {
    transform: scale(1.3) rotate(360deg);
}

.destination-text-item p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

/* --- Seção Café da Manhã --- */
.breakfast-section {
    background-color: var(--white);
}

.breakfast-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.breakfast-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.breakfast-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 250px;
    transition: all 0.5s ease;
    opacity: 1;
}

.breakfast-image:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.breakfast-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.breakfast-image:hover img {
    transform: scale(1.1);
}

.breakfast-info h3 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.breakfast-info p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.breakfast-items {
    list-style: none;
    margin-bottom: 30px;
}

.breakfast-items li {
    color: var(--text-color);
    font-size: 16px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.breakfast-items li:hover {
    transform: translateX(10px);
    color: var(--accent-color);
}

.breakfast-items li i {
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

.breakfast-items li:hover i {
    transform: scale(1.3) rotate(360deg);
}

.breakfast-hours {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--light-bg);
    padding: 20px 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.breakfast-hours:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.breakfast-hours i {
    font-size: 32px;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

.breakfast-hours strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 5px;
}

.breakfast-hours p {
    margin: 0;
    color: var(--text-color);
}

/* --- Mapa --- */
.map-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.map-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container {
    width: 100%;
    height: 500px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-3d-button {
    position: absolute;
    bottom: 30px;
    right: 40px;
    z-index: 100;
}

.map-3d-button .btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-3d-button .btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.map-3d-button .btn i {
    font-size: 16px;
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: #ccc;
    padding-top: 70px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-widget {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-widget:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-widget:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-widget:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-widget:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-widget h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 25px;
}

.footer-bottom {
    padding: 25px 0;
    text-align: center;
    font-size: 14px;
}

/* --- Social Links Footer --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.top-bar-links a {
    color: #ccc;
    text-decoration: none;
    transition: var(--transition);
}

.top-bar-links a:hover {
    color: var(--accent-color);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    color: var(--white);
}

.social-links a:hover {
    background: var(--white);
    color: var(--accent-color);
    transform: translateY(-5px) scale(1.1) rotate(360deg);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 40px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .booking-form {
        grid-template-columns: 1fr 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    nav.active ul {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .header-actions {
        display: none;
    }

    .top-bar {
        display: none;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .slide-content h1 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .nav-btn {
        padding: 10px;
        font-size: 18px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-3d-button {
        position: static;
        margin-top: 20px;
        text-align: center;
    }

    .map-3d-button .btn {
        width: 100%;
        justify-content: center;
    }

    .breakfast-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .breakfast-images {
        grid-template-columns: 1fr;
    }

    .breakfast-info h3 {
        font-size: 26px;
    }

    .destinations-banner-section {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .destinations-banner-content h2 {
        font-size: 36px !important;
    }

    .destination-text-item {
        padding: 20px;
    }

    .destination-text-item h3 {
        font-size: 20px;
    }

    .popup-nav-btn {
        padding: 10px 15px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
}


/* --- Banner de Destinos Full Viewport --- */
.destinations-banner-section {
    position: relative;
    min-height: 100vh;
    background-image: url('img/pousada-img/visao_alto_\ piscina2.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.destinations-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 38, 59, 0.92), rgba(197, 164, 126, 0.85));
}

.destinations-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.destinations-text-content {
    max-width: 1100px;
    margin: 50px auto 0;
    text-align: left;
}

.destination-text-item {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 25px;
    align-items: center;
}

.destination-text-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.destination-image {
    width: 200px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.destination-image:hover img {
    transform: scale(1.1);
}

.destination-text h3 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.destination-text h3 i {
    color: var(--accent-color);
    font-size: 20px;
}

.destination-text p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
}

/* Responsividade Banner Destinos */
@media (max-width: 768px) {
    .destinations-banner-section {
        background-attachment: scroll;
        padding: 60px 0;
    }

    .destinations-banner-content h2 {
        font-size: 36px !important;
    }

    .destination-text-item {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .destination-image {
        width: 100%;
        height: 200px;
    }

    .destination-text h3 {
        font-size: 20px;
    }
}

/* ========================================
 /* ========================================
   TOUR 360° SECTION - LAYOUT EM L
   Fundo branco, sem cinza
   ======================================== */

.tour-360-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.tour-360-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tour-360-section .section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tour-360-section .section-header p {
    font-size: 18px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Layout em L */
.tour-l-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar Vertical (Esquerda) */
.tour-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 100px;
}

.tour-info-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.tour-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #d4b896);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 30px rgba(197, 164, 126, 0.3);
}

.info-icon i {
    font-size: 36px;
    color: white;
}

.tour-info-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tour-info-card p {
    color: var(--text-color);
    line-height: 1.7;
    font-size: 15px;
}

/* Lista de Features */
.tour-features-list {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.tour-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.3s ease;
}

.tour-feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tour-feature-item:hover {
    transform: translateX(8px);
}

.tour-feature-item i {
    font-size: 22px;
    color: var(--accent-color);
    min-width: 28px;
    margin-top: 2px;
}

.tour-feature-item h4 {
    font-size: 15px;
    color: var(--primary-color);
    margin-bottom: 4px;
    font-weight: 700;
}

.tour-feature-item p {
    font-size: 13px;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

/* CTA Button */
.tour-cta {
    text-align: center;
}

.tour-cta .btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tour-cta .btn i {
    font-size: 16px;
}

/* Conteúdo Principal (Direita) */
.tour-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Tour Viewer */
.tour-viewer {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.tour-badge {
    position: absolute;
    top: 10px;
    left: 50px;
    background: linear-gradient(135deg, var(--accent-color), #d4b896);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(197, 164, 126, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse 2s infinite;
}

.tour-badge i {
    font-size: 14px;
}

.tour-iframe-wrapper {
    margin-bottom: 20px;
}

.tour-responsive-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.tour-responsive-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 12px;
}

/* Controls Hint */
.tour-controls-hint {
    display: flex;
    justify-content: space-around;
    gap: 15px;
    background: #f9f9f9;
    padding: 18px;
    border-radius: 10px;
}

.hint-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-size: 13px;
}

.hint-item i {
    font-size: 16px;
    color: var(--accent-color);
}

/* Cards Horizontais (embaixo do tour) */
.spaces-grid-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.space-card {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    text-align: center;
    border: 1px solid #f0f0f0;
}

.space-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.space-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f5f5f5, #ebebeb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.4s ease;
}

.space-card:hover .space-icon {
    background: linear-gradient(135deg, var(--accent-color), #d4b896);
    transform: rotate(360deg) scale(1.1);
}

.space-icon i {
    font-size: 26px;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

.space-card:hover .space-icon i {
    color: white;
}

.space-card h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.space-card p {
    font-size: 13px;
    color: var(--text-color);
    margin: 0;
}

/* Responsivo */
@media (max-width: 1200px) {
    .tour-l-layout {
        grid-template-columns: 340px 1fr;
        gap: 30px;
    }

    .spaces-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .tour-l-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tour-sidebar {
        position: relative;
        top: 0;
    }

    .tour-controls-hint {
        flex-wrap: wrap;
    }

    .spaces-grid-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tour-360-section .section-header h2 {
        font-size: 32px;
    }

    .tour-360-section .section-header p {
        font-size: 16px;
    }

    /* Badge menor e mais discreto no mobile */
    .tour-badge {
        left: 10px;
        top: 5px;
        padding: 6px 14px;
        font-size: 10px;
        gap: 5px;
    }

    .tour-badge i {
        font-size: 11px;
    }

    /* Tour viewer com menos padding para maximizar espaço do iframe */
    .tour-viewer {
        padding: 10px;
    }

    /* Iframe maior no mobile - proporção mais alta */
    .tour-responsive-wrapper {
        padding-bottom: 75%;
        /* Muda de 56.25% (16:9) para 75% (4:3) - mais alto */
    }

    /* Controls hint mais compacto */
    .tour-controls-hint {
        padding: 12px;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hint-item {
        font-size: 10px;
        gap: 6px;
    }

    .hint-item i {
        font-size: 13px;
    }

    .spaces-grid-horizontal {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .tour-info-card {
        padding: 25px 18px;
    }

    .tour-features-list {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    .tour-l-layout {
        gap: 25px;
    }

    /* Iframe ainda maior em telas muito pequenas */
    .tour-responsive-wrapper {
        padding-bottom: 85%;
        /* Proporção mais alta ainda para mobile pequeno */
    }

    /* Badge ainda mais discreto */
    .tour-badge {
        padding: 5px 12px;
        font-size: 9px;
    }

    /* Minimiza padding do viewer */
    .tour-viewer {
        padding: 8px;
    }

    /* Controls hint em coluna para economizar espaço */
    .tour-controls-hint {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    .hint-item {
        font-size: 9px;
        justify-content: center;
    }

    .hint-item i {
        font-size: 12px;
    }

    /* Margem menor entre iframe e hints */
    .tour-iframe-wrapper {
        margin-bottom: 10px;
    }
}

/* ========================================
   VERSÃO MOBILE OTIMIZADA - TOUR MÁXIMO
   Adicione estas classes extras se quiser esconder mais elementos
   ======================================== */

/* Opção 1: Esconder o badge no mobile */
@media (max-width: 768px) {
    .tour-badge {
        display: none;
        /* Remove completamente o badge no mobile */
    }
}

/* Opção 2: Esconder os hints de controle no mobile */
@media (max-width: 768px) {
    .tour-controls-hint {
        display: none;
        /* Remove os hints para dar mais espaço */
    }
}

/* Opção 3: Iframe em tela cheia no mobile (usa quase toda a altura da tela) */
@media (max-width: 768px) {
    .tour-viewer {
        padding: 5px;
    }

    .tour-responsive-wrapper {
        padding-bottom: 100%;
        /* Iframe quadrado - mais espaço vertical */
    }
}

/* Opção 4: MODO EXTREMO - Tour gigante no mobile */
@media (max-width: 768px) {
    .tour-badge {
        display: none;
    }

    .tour-controls-hint {
        display: none;
    }

    .tour-viewer {
        padding: 0;
        margin: 0 -20px;
        /* Expande até as bordas */
        border-radius: 0;
        box-shadow: none;
        border: none;
    }

    .tour-responsive-wrapper {
        padding-bottom: 120%;
        /* Muito alto */
        border-radius: 0;
    }

    .tour-responsive-wrapper iframe {
        border-radius: 0;
    }
}

/* Opção 5: Deixar seção de informações colapsável no mobile */
@media (max-width: 768px) {
    .tour-sidebar {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .tour-sidebar.expanded {
        max-height: 2000px;
    }

    /* Botão toggle (adicione no HTML se quiser) */
    .toggle-info-btn {
        display: block;
        width: 100%;
        padding: 15px;
        background: var(--accent-color);
        color: white;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        margin-bottom: 20px;
        cursor: pointer;
    }
}

.category-switcher {
    background-color: #f8f9fa; /* Fundo suave para destacar do header */
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.switch-buttons {
    display: inline-flex;
    gap: 10px;
    background: #e0e0e0;
    padding: 5px;
    border-radius: 50px;
}

.switch-btn {
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    color: #555;
}

/* Estilo para o botão que NÃO está selecionado */
.switch-btn:hover {
    background: #d0d0d0;
}

/* Estilo para destacar qual página o usuário está (Ativo) */
.switch-btn.active {
    background-color: var(--accent-color, #007bff); /* Usa sua cor principal */
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}