:root {
    --primary: #000084;
    --secondary: #B48D69;
    --bg-light: #F8F8F8;
    --text-main: #222222;
    --text-sec: #555555;
    --white: #FFFFFF;
    --error: #D9534F;
    --success: #5CB85C;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* LOADING SPINNER */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    opacity: 1;
    visibility: visible;
}

.loading-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 5px solid var(--bg-light);
    border-top: 5px solid var(--primary);
    border-right: 5px solid var(--secondary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ANIMAÇÃO DE ENTRADA DAS SEÇÕES */
.section-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Hero section não precisa da animação padrão, mas mantemos consistência */
.hero-carousel.section-animate {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    height: 50px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #0000a0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,132,0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #a37c58;
    transform: translateY(-2px);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.logo img {
    height: 38.39px;
}

.logo i {
    font-size: 28px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--secondary);
}

.nav-links a.active {
    color: var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary);
    z-index: 1001;
    padding: 8px;
    font-size: 24px;
}

/* Hero Carousel */
.hero-carousel {
    height: 100vh;
    min-height: 600px;
    position: relative;
    color: var(--white);
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
}

.slide-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: zoomBackground 20s linear infinite;
    will-change: transform;
}

@keyframes zoomBackground {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-fixed-content {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 92px;
    margin-top: -100vh;
}

.hero-fixed-content h1 {
    font-size: 3.5rem;
    margin-bottom: 12px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
    color: var(--white);
}

.hero-fixed-content p {
    font-size: 1.2rem;
    margin-bottom: 24px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: var(--white);
}

.hero-slider.fade-transition .slide {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slider.fade-transition .slide.active {
    opacity: 1;
}

.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 15;
    display: none;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--secondary);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    display: none;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 15;
}

.arrow {
    color: white;
    font-size: 30px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.6);
    transform: scale(1.1);
}

/* Booking Bar */
.booking-bar {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1100px;
    margin-top: 20px;
    color: var(--text-main);
    text-align: left;
    width: 100%;
}

.booking-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
    justify-content: center;
}

.form-group {
    width: 100%;
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-sec);
}

.form-group select, .form-group input {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.form-group select:focus, .form-group input:focus {
    border-color: var(--primary);
}

.children-ages {
    display: none;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.children-ages.show {
    display: flex;
}

.child-age-group-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.child-age-group {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.child-age-group label {
    font-weight: 600;
    min-width: 120px;
    margin-bottom: 0;
}

.child-age-group select {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

.btn-booking {
    width: 100%;
}

@media (min-width: 768px) {
    .btn-booking {
        width: auto;
        min-width: 200px;
    }
    
    .booking-row .btn-booking {
        width: auto;
    }
}

section:not(.hero-carousel) {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-sec);
    font-size: 1.1rem;
}

.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.hotel-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hotel-card:hover {
    transform: translateY(-10px);
}

.hotel-img {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.hotel-info {
    padding: 30px;
}

.hotel-info h3 {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.hotel-info p {
    color: var(--text-sec);
    margin-bottom: 20px;
}

.promo-section {
    background-color: var(--bg-light);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.promo-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    border-top: 5px solid var(--secondary);
    box-shadow: var(--shadow);
}

.promo-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.promo-card .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 15px 0;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.amenity-item i {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 40px;
}

.amenity-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.feature-split {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-img {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    display: block;
}

.feature-text {
    flex: 1;
    min-width: 300px;
}

.feature-text h2 {
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.testimonials {
    background-color: var(--primary);
    color: var(--white);
}

.testimonials .section-title h2 {
    color: var(--white);
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    min-width: 350px;
    backdrop-filter: blur(5px);
}

.stars {
    color: var(--secondary);
    margin-bottom: 15px;
}

.stars i {
    margin-right: 2px;
}

.partnership {
    background: linear-gradient(rgba(180, 141, 105, 0.1), rgba(180, 141, 105, 0.1));
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 999;
    font-size: 30px;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

footer {
    background: #111;
    color: #ccc;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-col .break-all {
    word-break: break-all;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

.footer-col p i {
    margin-right: 8px;
    width: 16px;
}

@media (max-width: 992px) {
    .hero-fixed-content h1 { font-size: 2.5rem; }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        z-index: 1000;
        padding: 80px 20px 40px;
        margin: 0;
        list-style: none;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        font-size: 18px;
        display: block;
        padding: 12px;
        font-weight: 600;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .booking-bar {
        flex-direction: column;
        align-items: stretch;
    }
    
    .booking-row {
        flex-direction: column;
    }
    
    .btn-booking {
        width: 100%;
        margin-top: 10px;
    }

    .slider-arrows {
        padding: 0 15px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    section:not(.hero-carousel) { padding: 60px 0; }
    .hero-carousel { min-height: 550px; }
    .section-title h2 { font-size: 2rem; }
    .hero-fixed-content h1 { font-size: 2rem; }
    .hero-fixed-content p { font-size: 1rem; }
    .testimonial-card { min-width: 280px; }
    .hotels-grid { grid-template-columns: 1fr; }
    .promo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { padding: 10px 20px; }
}

/* ===== NOVOS ESTILOS PARA A PÁGINA DE HOTÉIS ===== */
.page-header {
    background-color: var(--bg-light);
    padding: 140px 0 60px 0;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.page-header h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 16px;
}
.page-header p {
    color: var(--white);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}
.booking-wrapper-relative {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-top: -50px;
    margin-bottom: 30px;
}
.hotel-detail-section {
    padding: 80px 0;
}
.hotel-detail-section:nth-child(even) {
    background-color: var(--bg-light);
}
.hotel-detail-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}
.hotel-detail-img {
    flex: 1;
    min-width: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.hotel-detail-img .img-container {
    position: relative;
    width: 100%;
    padding-bottom: 80%;
}
.hotel-detail-img .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    transition: transform 0.4s ease;
    object-fit: cover;
}
.hotel-detail-img:hover img {
    transform: scale(1.02);
}
.hotel-detail-info {
    flex: 1;
    min-width: 280px;
}
.hotel-detail-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary);
    padding-left: 20px;
}
.hotel-description {
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 25px;
}
.info-block {
    background: rgba(0,0,0,0.02);
    padding: 18px 20px;
    border-radius: 16px;
    margin-bottom: 25px;
    border: 1px solid rgba(180,141,105,0.2);
}
.info-block.flex1 {
    flex: 1;
}
.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}
.distance-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.distance-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    flex-wrap: wrap;
}
.distance-list li i {
    width: 28px;
    color: var(--secondary);
    font-size: 1.1rem;
    text-align: center;
}
.distance-time {
    background: var(--white);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-left: 8px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.amenities-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 20px 0 25px;
}
.amenities-tag-list span {
    background: var(--white);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #eee;
}
.amenities-tag-list span i {
    color: var(--secondary);
}
@media (max-width: 768px) {
    .hotel-detail-grid {
        flex-direction: column;
    }
    .page-header h1 {
        font-size: 2.2rem;
    }
    .booking-wrapper-relative {
        margin-top: -30px;
    }
    .info-block h3 {
        font-size: 1.2rem;
    }
}
@media (max-width: 480px) {
    .hotel-detail-section {
        padding: 50px 0;
    }
}

/* ===== NOVOS ESTILOS PARA HOTEL.HTML ===== */

/* Grid de quartos */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
}

.room-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.room-info {
    padding: 24px;
}

.room-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.room-info .btn {
    display: block;
}

.room-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 15px 0;
    font-size: 0.85rem;
    color: var(--text-sec);
}

.room-details span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.room-icons {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Localização grid */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.location-map .map-container {
    margin-top: 20px;
}

/* Extended amenities grid */
.amenities-grid.extended {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

/* Schedule grid */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    text-align: center;
}

.schedule-card {
    background: var(--white);
    padding: 25px 15px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.schedule-card:hover {
    transform: translateY(-3px);
}

.schedule-card i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.schedule-card h4 {
    margin-bottom: 10px;
    color: var(--primary);
}

.schedule-card p {
    font-size: 1.1rem;
    font-weight: 700;
}

.schedule-card small {
    color: var(--text-sec);
    font-size: 0.75rem;
}

/* FAQ Grid */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question i:first-child {
    color: var(--secondary);
    font-size: 1.2rem;
}

.faq-question .faq-toggle {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-sec);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px 18px;
    max-height: 200px;
}

/* Feature reverse */
.feature-split.reverse {
    flex-direction: row-reverse;
}

/* Responsividade */
@media (max-width: 768px) {
    .location-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-split.reverse {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ESTILOS PARA A PÁGINA DE POST (BLOG) ===== */

/* Container principal com flexbox para sidebar */
.post-main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 60px 20px;
}

.post-content {
    flex: 2.5;
    min-width: 280px;
}

.post-sidebar {
    flex: 1;
    min-width: 260px;
}

/* Hero do post */
.post-meta-header {
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.post-category {
    display: inline-block;
    background: var(--secondary);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.post-meta-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.post-meta-info i {
    margin-right: 6px;
    color: var(--secondary);
}

/* Conteúdo do post */
.post-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 35px;
    border-left: 4px solid var(--secondary);
    padding-left: 25px;
}

.post-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px 0;
    color: var(--primary);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-light);
}

.post-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px 0;
    color: var(--secondary);
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-sec);
}

/* Tabela de estações */
.season-table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
}

.season-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.season-table-wrapper th,
.season-table-wrapper td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.season-table-wrapper th {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

.season-table-wrapper tr:last-child td {
    border-bottom: none;
}

/* Listas com ícones */
.post-list {
    list-style: none;
    margin: 20px 0;
}

.post-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.post-list li i {
    width: 24px;
    color: var(--secondary);
    font-size: 1.1rem;
}

.info-note {
    background: #e8f0fe;
    padding: 18px 25px;
    border-radius: 16px;
    margin: 25px 0;
    border-left: 5px solid var(--primary);
}

.info-note i {
    color: var(--primary);
    margin-right: 10px;
}

/* Highlight box (Macuco Safari) */
.highlight-box {
    background: var(--bg-light);
    border-radius: 24px;
    padding: 25px;
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
    border: 1px solid rgba(180,141,105,0.2);
}

.highlight-box > i {
    font-size: 3rem;
    color: var(--secondary);
}

.highlight-box h4 {
    margin-bottom: 15px;
    color: var(--primary);
}

.checklist {
    list-style: none;
    margin: 15px 0;
}

.checklist li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checklist li i {
    color: var(--success);
}

/* Checklist grid */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 15px;
    margin: 25px 0;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 20px;
}

.checklist-grid > div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.checklist-grid i {
    color: var(--secondary);
    font-size: 1.2rem;
}

/* Dica de ouro */
.golden-tip {
    background: linear-gradient(135deg, rgba(180,141,105,0.1), rgba(180,141,105,0.2));
    border-radius: 20px;
    padding: 30px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    border: 1px solid var(--secondary);
}

.golden-tip > i {
    font-size: 3rem;
    color: var(--secondary);
}

.golden-tip h3 {
    margin-top: 0;
    color: var(--primary);
}

.golden-tip .btn-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--secondary);
    font-weight: 700;
    text-decoration: underline;
}

/* Compartilhamento */
.social-share {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 40px 0 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.social-share span {
    font-weight: 700;
}

.share-icon {
    background: var(--bg-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-main);
    font-size: 1.2rem;
}

.share-icon:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Posts relacionados */
.related-posts {
    margin: 50px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.related-card .hotel-info {
    padding: 20px;
}

.related-card h4 {
    font-size: 1.1rem;
    margin: 10px 0;
}

.read-more {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Comentários */
.comments-section {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.comment-form .form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.comment-form .form-field {
    flex: 1;
    min-width: 180px;
}

.comment-form .full-width {
    width: 100%;
}

.comment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

/* Sidebar widgets */
.sidebar-widget {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-widget h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary);
    border-left: 4px solid var(--secondary);
    padding-left: 12px;
}

.author-box {
    background: var(--bg-light);
}

.author-info p {
    color: var(--text-sec);
    line-height: 1.6;
    font-size: 0.9rem;
}

.recent-posts {
    list-style: none;
}

.recent-posts li {
    margin-bottom: 12px;
}

.recent-posts li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.recent-posts li a i {
    font-size: 10px;
    color: var(--secondary);
}

.recent-posts li a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 40px;
    font-family: inherit;
}

.newsletter-form .btn {
    width: 100%;
}

/* Responsividade para sidebar */
@media (max-width: 992px) {
    .post-main-container {
        flex-direction: column;
    }
    
    .post-meta-header h1 {
        font-size: 1.8rem;
    }
    
    .post-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .post-meta-info {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .golden-tip {
        padding: 20px;
    }
    
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .post-main-container {
        padding: 40px 16px;
    }
    
    .post-intro {
        font-size: 1rem;
        padding-left: 15px;
    }
    
    .season-table-wrapper th,
    .season-table-wrapper td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

/* Página Contato */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px 0;
}
.contact-info, .contact-form-container {
    flex: 1;
    min-width: 280px;
}
.contact-card {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
}
.contact-card:hover {
    transform: translateY(-3px);
}
.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}
.contact-details h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary);
}
.contact-details p, .contact-details a {
    color: var(--text-sec);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}
.contact-details a:hover {
    color: var(--secondary);
}
.contact-form {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    box-shadow: var(--shadow);
}
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary);
}
.contact-form > p {
    color: var(--text-sec);
    margin-bottom: 25px;
}
.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.form-field {
    flex: 1;
    min-width: 200px;
}
.form-field.full-width {
    width: 100%;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-main);
}
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(180,141,105,0.1);
}
.location-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}
.location-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.location-card:hover {
    transform: translateY(-5px);
}
.location-card .map-container {
    height: 220px;
}
.location-card .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}
.location-card-content {
    padding: 20px;
}
.location-card-content h3 {
    color: var(--primary);
    margin-bottom: 8px;
}
.location-card-content p {
    color: var(--text-sec);
    font-size: 0.9rem;
    margin-bottom: 15px;
}
.location-card-content .btn-outline {
    padding: 8px 20px;
    font-size: 0.85rem;
}
@media (max-width: 768px) {
    .contact-form { padding: 25px; }
    .contact-card { padding: 20px; }
    .location-cards { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .contact-form h3 { font-size: 1.3rem; }
}