/* ===== VARIABLES ===== */
:root {
    /* Colors */
    --color-primary: #00A8CC;
    --color-primary-dark: #007EA7;
    --color-primary-light: #00C9FF;
    --color-secondary: #FFD60A;
    --color-secondary-dark: #E5BE00;
    --color-accent: #FF6B6B;
    --color-ocean: #0077BE;
    --color-sand: #F4E4C1;
    
    /* Neutral Colors */
    --color-white: #FFFFFF;
    --color-black: #1A1A2E;
    --color-gray-light: #F5F5F5;
    --color-gray: #CCCCCC;
    --color-gray-dark: #666666;
    --color-text: #333333;
    --color-text-light: #777777;
    
    /* Gradients */
    --gradient-ocean: linear-gradient(135deg, #00A8CC 0%, #0077BE 100%);
    --gradient-sunset: linear-gradient(135deg, #FF6B6B 0%, #FFD60A 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.2);
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Spacing */
    --header-height: 70px;
    --section-padding: 80px 0;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

.section {
    padding: var(--section-padding);
}

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

.section__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section__title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-ocean);
    border-radius: 2px;
}

.section__subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-top: 20px;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-normal);
}

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

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    min-width: 0;
}

.nav__menu {
    margin-left: auto;
}

.nav__logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition-normal);
}

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

.nav__list {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    color: var(--color-text);
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-ocean);
    transition: var(--transition-fast);
}

.nav__link:hover,
.nav__link.active {
    color: var(--color-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1600&q=80') center/cover no-repeat;
    margin-top: var(--header-height);
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero__description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.hero__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: var(--gradient-ocean);
    color: var(--color-white);
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
}

.hero__button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__scroll-button {
    color: var(--color-white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* ===== HERO CAROUSEL ===== */
.hero-carousel {
    position: relative;
    margin-top: var(--header-height);
    height: 100vh;
    min-height: 600px;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: 20px;
}

.hero-slide__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease;
}

.hero-slide__title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-slide__description {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-slide__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-slide__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.hero-slide__button--primary {
    background: var(--gradient-ocean);
    color: var(--color-white);
}

.hero-slide__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-slide__button--secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-slide__button--secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Controles do Swiper */
.hero-swiper-pagination {
    bottom: 80px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: var(--transition-fast);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 6px;
}

.hero-swiper-button-next,
.hero-swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: var(--transition-fast);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-swiper-button-next {
    right: 30px;
}

.hero-swiper-button-prev {
    left: 30px;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-swiper-button-next i,
.hero-swiper-button-prev i {
    font-size: 20px;
}

/* Scroll Down na Hero Carousel */
.hero-carousel .hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* ===== DESTINOS SECTION ===== */
.destinos__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.destino__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    animation: fadeInUp 0.6s ease backwards;
}

.destino__card:nth-child(1) { animation-delay: 0.1s; }
.destino__card:nth-child(2) { animation-delay: 0.2s; }
.destino__card:nth-child(3) { animation-delay: 0.3s; }
.destino__card:nth-child(4) { animation-delay: 0.4s; }

.destino__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.destino__image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.destino__card:hover .destino__image {
    transform: scale(1.1);
}

.destino__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
}

.destino__content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: var(--color-white);
    z-index: 2;
}

.destino__title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.destino__text {
    font-size: 0.95rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.destino__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
    border-radius: 25px;
    transition: var(--transition-fast);
}

.destino__button:hover {
    background-color: var(--color-secondary);
    color: var(--color-black);
    transform: scale(1.05);
}

/* ===== FILTROS SECTION ===== */
.filtros {
    background-color: var(--color-gray-light);
    padding: 30px 0;
}

.filtros__wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filtro__group {
    flex: 1;
    min-width: 250px;
}

.filtro__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.filtro__select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    background-color: var(--color-white);
    color: var(--color-text);
    font-size: 1rem;
    transition: var(--transition-fast);
    cursor: pointer;
}

.filtro__select:focus {
    outline: none;
    border-color: var(--color-primary);
}

.filtro__reset {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: var(--color-accent);
    color: var(--color-white);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.filtro__reset:hover {
    background-color: #E55858;
    transform: scale(1.05);
}

/* ===== PASSEIOS SECTION ===== */
.passeios__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.loading i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.passeio__card {
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    animation: fadeInUp 0.5s ease backwards;
}

.passeio__card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.passeio__image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.passeio__card:hover .passeio__image {
    transform: scale(1.1);
}

.passeio__badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 14px;
    background-color: var(--color-secondary);
    color: var(--color-black);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.passeio__content {
    padding: 25px;
}

.passeio__header {
    margin-bottom: 15px;
}

.passeio__title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-bottom: 8px;
}

.passeio__location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.passeio__description {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.passeio__info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: var(--color-gray-light);
    border-radius: 10px;
}

.passeio__info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.passeio__info-item i {
    color: var(--color-primary);
}

.passeio__footer {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 20px;
    border-top: 2px solid var(--color-gray-light);
}

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

.passeio__price-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.passeio__price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.passeio__actions {
    display: flex;
    gap: 10px;
    width: 100%;
}

.passeio__button {
    flex: 1;
    padding: 12px 20px;
    background: var(--gradient-ocean);
    color: var(--color-white);
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.passeio__button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.passeio__button--detalhes {
    background: var(--gradient-sunset);
}

.passeio__button i {
    font-size: 16px;
}

.passeios__empty {
    text-align: center;
    padding: 60px 20px;
    color: var(--color-text-light);
}

.passeios__empty i {
    font-size: 4rem;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.passeios__empty p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* ===== CONTATO SECTION ===== */
.contato {
    background-color: var(--color-gray-light);
}

.contato__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contato__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contato__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: var(--color-white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast);
}

.contato__item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contato__icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-ocean);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contato__text h4 {
    font-size: 1.1rem;
    color: var(--color-primary-dark);
    margin-bottom: 5px;
}

.contato__text p {
    color: var(--color-text);
}

.contato__map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    color: var(--color-white);
    padding: 84px 0 34px;
    background:
        radial-gradient(circle at top left, rgba(0, 201, 255, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(255, 214, 10, 0.12), transparent 22%),
        linear-gradient(180deg, #0f172a 0%, #111827 55%, #0b1220 100%);
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: min(1120px, calc(100% - 40px));
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.45), rgba(255,255,255,0));
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 34px;
    align-items: stretch;
}

.footer__column {
    position: relative;
    padding: 28px 24px;
    min-height: 100%;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 18px 48px rgba(0,0,0,0.22);
    backdrop-filter: blur(14px);
}

.footer__column::after {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.3), rgba(255,255,255,0));
}

.footer__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
}

.footer-logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer__description {
    color: rgba(255,255,255,0.78);
    line-height: 1.9;
    margin-bottom: 24px;
    max-width: 34ch;
}

.footer__trust {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.footer__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(0, 201, 255, 0.22), rgba(0, 126, 167, 0.18));
    color: var(--color-white);
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer__badge i {
    color: #7fe7ff;
}

.footer__cadastur {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.04));
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
}

.footer__cadastur-text {
    margin: 0;
    color: rgba(255,255,255,0.76);
    line-height: 1.7;
    font-size: 0.96rem;
}

.footer__cadastur-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 16px;
    background: rgba(0, 18, 99, 0.96);
    border: 1px solid rgba(255,255,255,0.20);
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.footer__cadastur-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(0,0,0,0.24);
}

.footer__cadastur-logo {
    width: 170px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__social-link {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 50%;
    font-size: 1.15rem;
    color: var(--color-white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.16);
    transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--gradient-ocean);
    transform: translateY(-3px);
    box-shadow: 0 16px 26px rgba(0,0,0,0.22);
}

.footer__title {
    position: relative;
    display: inline-block;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--color-white);
}

.footer__title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--gradient-sunset);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links li {
    color: rgba(255,255,255,0.72);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer__links li i {
    color: var(--color-primary-light);
    margin-top: 4px;
}

.footer__links a {
    color: rgba(255,255,255,0.72);
    transition: color var(--transition-fast), transform var(--transition-fast);
}

.footer__links a:hover {
    color: var(--color-white);
    transform: translateX(4px);
}

.footer__bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.footer__copyright {
    color: rgba(255,255,255,0.66);
    letter-spacing: 0.02em;
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal.show {
    display: flex;
}

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

.modal__content {
    position: relative;
    background-color: var(--color-white);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: modalIn 0.3s ease;
}

.modal__content--small {
    max-width: 500px;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray-light);
    border-radius: 50%;
    font-size: 1.3rem;
    color: var(--color-text);
    transition: var(--transition-fast);
    z-index: 1;
}

.modal__close:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: rotate(90deg);
}

.modal__header {
    padding: 40px 40px 30px;
    background: var(--gradient-ocean);
    color: var(--color-white);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 8px;
}

.modal__subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== FORM ===== */
.reserva__form {
    padding: 40px;
}

.form__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.form__group {
    display: flex;
    flex-direction: column;
}

.form__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary-dark);
}

.form__input,
.form__select,
.form__textarea {
    padding: 12px 16px;
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== RESUMO ===== */
.reserva__resumo {
    background-color: var(--color-gray-light);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.resumo__title {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 20px;
}

.resumo__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-gray);
}

.resumo__item:last-child {
    border-bottom: none;
}

.resumo__total {
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--color-primary);
    font-size: 1.2rem;
}

.resumo__total strong {
    color: var(--color-primary);
    font-size: 1.5rem;
}

/* ===== BUTTONS ===== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-fast);
    cursor: pointer;
}

.button--primary {
    background: var(--gradient-ocean);
    color: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.button--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button--secondary {
    background-color: var(--color-gray-light);
    color: var(--color-text);
}

.button--secondary:hover {
    background-color: var(--color-gray);
}

.form__actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* ===== SUCCESS MODAL ===== */
.modal__success {
    padding: 60px 40px;
    text-align: center;
}

.success__icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 25px;
}

.success__title {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--color-primary-dark);
    margin-bottom: 15px;
}

.success__message {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ===== SCROLL TO TOP ===== */
.scrolltop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gradient-ocean);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-fast);
    z-index: 999;
}

.scrolltop.show {
    display: flex;
}

.scrolltop:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE ===== */
@media screen and (max-width: 968px) {
    :root {
        --header-height: 60px;
        --section-padding: 60px 0;
    }

    .section__title {
        font-size: 2rem;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__description {
        font-size: 1.1rem;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background-color: var(--color-white);
        box-shadow: var(--shadow-xl);
        padding: 80px 30px 30px;
        transition: var(--transition-normal);
        z-index: 1001;
    }

    .nav__menu.show-menu {
        right: 0;
    }

    .nav__list {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .nav__link {
        font-size: 1.1rem;
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .nav__close {
        position: absolute;
        top: 25px;
        right: 25px;
    }

    .logo-img {
        height: 40px;
    }

    .destinos__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .passeios__grid {
        grid-template-columns: 1fr;
    }

    .filtros__wrapper {
        flex-direction: column;
    }

    .filtro__group {
        width: 100%;
    }


    /* Hero Carousel Responsive */
    .hero-carousel {
        min-height: 500px;
    }

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

    .hero-slide__description {
        font-size: 1.1rem;
    }

    .hero-slide__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-slide__button {
        width: 100%;
        justify-content: center;
    }

    .hero-swiper-button-next,
    .hero-swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .hero-swiper-button-next {
        right: 15px;
    }

    .hero-swiper-button-prev {
        left: 15px;
    }

    .modal__content {
        max-width: 95%;
    }

    .reserva__form {
        padding: 30px 20px;
    }

    .form__grid {
        grid-template-columns: 1fr;
    }

    .form__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .footer {
        padding: 72px 0 30px;
    }

    .footer__grid {
        gap: 20px;
    }

    .footer__column {
        padding: 24px 20px;
        border-radius: 22px;
    }

    .footer-logo-img {
        height: 64px;
    }

    .footer__description {
        max-width: 100%;
    }

    .footer__cadastur {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__cadastur-link {
        width: 100%;
        justify-content: flex-start;
    }

    .footer__cadastur-logo {
        width: 160px;
    }
}



@media screen and (max-width: 576px) {
    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .modal__header {
        padding: 30px 20px 20px;
    }

    .modal__title {
        font-size: 1.6rem;
    }

    .modal__success {
        padding: 40px 20px;
    }

    .success__icon {
        font-size: 4rem;
    }

    .footer {
        padding: 56px 0 24px;
    }

    .footer .container {
        padding: 0 16px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 28px;
    }

    .footer__column {
        padding: 20px 16px;
        border-radius: 20px;
    }

    .footer__logo {
        width: 100%;
        justify-content: center;
        margin-bottom: 18px;
    }

    .footer-logo-img {
        height: 58px;
    }

    .footer__badge {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 14px;
    }

    .footer__cadastur {
        padding: 15px;
        gap: 14px;
    }

    .footer__cadastur-link {
        width: 100%;
        justify-content: center;
    }

    .footer__cadastur-logo {
        width: 150px;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__social-link {
        width: 42px;
        height: 42px;
    }

    .footer__title {
        font-size: 1.2rem;
    }

    .footer__bottom {
        padding-top: 22px;
    }

    .footer__copyright {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .contato__grid {
        grid-template-columns: 1fr;
    }
}
/* =====================================================
   ADIÇÕES: WhatsApp Float, Destaque Cards, Botões
   ===================================================== */

/* ===== BOTÃO FLUTUANTE WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.65);
}

.whatsapp-float__tooltip {
    position: absolute;
    right: 72px;
    white-space: nowrap;
    background: #fff;
    color: #25a244;
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-family: var(--font-primary);
}

.whatsapp-float:hover .whatsapp-float__tooltip {
    opacity: 1;
}

/* Pulsação sutil */
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.whatsapp-float {
    animation: waPulse 2.5s infinite;
}

/* ===== DESTINOS GRID – 4 colunas (era 4, agora 8 destinos) ===== */
.destinos__grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

/* ===== CARD DESTAQUE ===== */
.passeio__card--destaque {
    border: 2px solid var(--color-secondary);
}

.passeio__tag-destaque {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--color-secondary);
    color: var(--color-black);
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.passeio__badge--destaque {
    background: var(--color-secondary);
    color: var(--color-black);
}

/* ===== BOTÃO WHATSAPP NO MODAL ===== */
.button--whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-normal);
    box-shadow: 0 4px 16px rgba(37,211,102,.35);
    margin-top: 6px;
}
.button--whatsapp:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(37,211,102,.5);
}

/* ===== RESUMO – itens extras ===== */
.resumo__item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #e0e0e0;
    font-size: .9rem;
    color: var(--color-text);
}
.resumo__item:last-child { border-bottom: none; }
.resumo__total {
    font-weight: 700;
    color: var(--color-primary-dark);
    font-size: 1rem;
    padding-top: 10px;
}

/* ===== CONTATO – link WhatsApp ===== */
.contato__text a {
    color: var(--color-primary);
    font-weight: 500;
}
.contato__text a:hover { color: #25d366; }


/* ===== GALERIA / CARROSSEL DE IMAGENS ===== */
.inspira {
    background: linear-gradient(180deg, rgba(0, 168, 204, 0.06) 0%, rgba(255, 255, 255, 1) 100%);
}

.inspira-swiper {
    overflow: visible;
    padding-bottom: 60px;
}

.inspira-card {
    background: var(--color-white);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
}

.inspira-card__image-wrapper {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.inspira-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.inspira-card:hover .inspira-card__image {
    transform: scale(1.06);
}

.inspira-card__content {
    padding: 22px;
}

.inspira-card__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 168, 204, 0.12);
    color: var(--color-primary-dark);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.inspira-card__title {
    font-size: 1.3rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.inspira-card__description {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.inspira-swiper-button-next,
.inspira-swiper-button-prev {
    position: absolute;
    top: 40%;
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
    color: var(--color-primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.inspira-swiper-button-next:hover,
.inspira-swiper-button-prev:hover {
    transform: scale(1.08);
    background: var(--color-primary);
    color: var(--color-white);
}

.inspira-swiper-button-prev {
    left: -10px;
}

.inspira-swiper-button-next {
    right: -10px;
}

.inspira-swiper-pagination {
    bottom: 8px !important;
}

.inspira-swiper-pagination .swiper-pagination-bullet {
    background: rgba(0, 126, 167, 0.35);
    opacity: 1;
}

.inspira-swiper-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    width: 26px;
    border-radius: 999px;
}

/* ===== FEEDBACK, ERRO E LOADING ===== */
.passeios__feedback {
    margin-bottom: 24px;
}

.feedback {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 500;
}

.feedback--warning {
    background: rgba(255, 214, 10, 0.14);
    color: #8a6d00;
    border: 1px solid rgba(255, 214, 10, 0.35);
}

.feedback--error {
    background: rgba(255, 107, 107, 0.12);
    color: #b42318;
    border: 1px solid rgba(255, 107, 107, 0.28);
}

.loading--error {
    background: rgba(255, 107, 107, 0.08);
    border: 1px dashed rgba(255, 107, 107, 0.45);
    border-radius: 18px;
}

.button--retry {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--gradient-ocean);
    color: var(--color-white);
    font-weight: 600;
}

.passeio__card--skeleton {
    pointer-events: none;
}

.skeleton {
    position: relative;
    overflow: hidden;
    background: #e9eef2;
    border-radius: 12px;
}

.skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
    animation: skeleton-shimmer 1.35s infinite;
}

.skeleton--image {
    height: 220px;
    border-radius: 0;
}

.skeleton--badge {
    width: 120px;
    height: 28px;
    margin-bottom: 18px;
}

.skeleton--title {
    width: 82%;
    height: 24px;
    margin-bottom: 12px;
}

.skeleton--text {
    width: 100%;
    height: 14px;
    margin-bottom: 10px;
}

.skeleton--text-short {
    width: 72%;
}

.skeleton--footer {
    width: 100%;
    height: 48px;
    margin-top: 22px;
}

@keyframes skeleton-shimmer {
    100% {
        transform: translateX(100%);
    }
}

@media screen and (max-width: 1024px) {
    .inspira-swiper-button-next,
    .inspira-swiper-button-prev {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .inspira-card__content {
        padding: 18px;
    }
}

/* ===== CLIMA EM TEMPO REAL ===== */
.clima {
    background: linear-gradient(180deg, rgba(0, 168, 204, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
}

.clima__header {
    margin-bottom: 38px;
}

.clima__widget {
    position: relative;
    overflow: hidden;
    padding: 36px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 126, 167, 0.96) 0%, rgba(0, 168, 204, 0.95) 55%, rgba(0, 201, 255, 0.92) 100%);
    box-shadow: 0 24px 60px rgba(0, 119, 190, 0.18);
    color: var(--color-white);
}

.clima__widget::before,
.clima__widget::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.clima__widget::before {
    width: 240px;
    height: 240px;
    top: -90px;
    right: -70px;
    background: rgba(255, 255, 255, 0.12);
}

.clima__widget::after {
    width: 180px;
    height: 180px;
    bottom: -80px;
    left: -60px;
    background: rgba(255, 255, 255, 0.08);
}

.clima__loading,
.clima__erro {
    position: relative;
    z-index: 1;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
}

.clima__loading i,
.clima__erro i {
    font-size: 2.2rem;
}

.clima__erro .button {
    margin-top: 6px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.clima__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.95fr);
    gap: 28px;
    align-items: stretch;
}

.clima__main,
.clima__side {
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
}

.clima__main {
    padding: 30px;
}

.clima__side {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    justify-content: space-between;
}

.clima__top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.clima__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 10px;
}

.clima__place {
    font-size: 1.05rem;
    opacity: 0.92;
}

.clima__temperature {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
}

.clima__temperature-value {
    font-size: clamp(3rem, 8vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
}

.clima__icon {
    width: 86px;
    height: 86px;
    border-radius: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    background: rgba(255, 255, 255, 0.18);
    color: #FFE082;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.clima__summary {
    font-size: 1.1rem;
    margin-bottom: 22px;
    opacity: 0.98;
}

.clima__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.clima__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.95rem;
}

.clima__metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.clima__metric {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.clima__metric-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    opacity: 0.88;
    margin-bottom: 8px;
}

.clima__metric-value {
    font-size: 1.35rem;
    font-weight: 700;
}

.clima__note {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.clima__note-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 8px;
}

.clima__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 0.92rem;
    opacity: 0.88;
}

.clima__source {
    font-size: 0.88rem;
    opacity: 0.88;
}

.clima__source a {
    text-decoration: underline;
    font-weight: 600;
}

@media screen and (max-width: 900px) {
    .clima__content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 640px) {
    .clima__widget {
        padding: 20px;
        border-radius: 22px;
    }

    .clima__main,
    .clima__side {
        padding: 20px;
    }

    .clima__top,
    .clima__temperature {
        flex-direction: column;
        align-items: flex-start;
    }

    .clima__metrics {
        grid-template-columns: 1fr;
    }
}


/* ===== HERO + CLIMA COMPACTO ===== */
.hero-carousel {
    min-height: calc(100vh + 220px);
    background: linear-gradient(180deg, rgba(0, 168, 204, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
}

.hero-swiper {
    height: 100vh;
    min-height: 620px;
}

.hero__scroll {
    bottom: 220px;
}

.hero-clima {
    position: relative;
    z-index: 6;
    margin-top: -120px;
    padding: 0 0 32px;
}

.hero-clima__container {
    display: grid;
    gap: 20px;
}

.hero-clima__intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--color-primary-dark);
}

.hero-clima__intro h2 {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.15;
}

.hero-clima__intro p {
    max-width: 760px;
    color: var(--color-text-light);
}

.hero-clima__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(0, 126, 167, 0.1);
    color: var(--color-primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.clima__widget--hero {
    padding: 24px;
    border-radius: 26px;
    box-shadow: 0 20px 60px rgba(0, 119, 190, 0.2);
}

.clima__widget--hero .clima__content {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    gap: 18px;
    align-items: start;
}

.clima__widget--hero .clima__panel {
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    padding: 20px;
}

.clima__widget--hero .clima__panel--main {
    display: grid;
    gap: 16px;
}

.clima__widget--hero .clima__headline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.clima__widget--hero .clima__city {
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.clima__widget--hero .clima__update {
    font-size: 0.92rem;
    opacity: 0.88;
}

.clima__widget--hero .clima__icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    font-size: 1.9rem;
}

.clima__widget--hero .clima__temperature {
    margin-bottom: 0;
    gap: 16px;
}

.clima__widget--hero .clima__temperature-value {
    font-size: clamp(2.8rem, 7vw, 4.2rem);
}

.clima__widget--hero .clima__summary {
    margin-bottom: 0;
    font-size: 1rem;
}

.clima__widget--hero .clima__quick-stats,
.clima__widget--hero .clima__sea-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.clima__widget--hero .clima__mini-card {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.clima__widget--hero .clima__mini-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    opacity: 0.88;
    margin-bottom: 6px;
}

.clima__widget--hero .clima__mini-value {
    font-size: 1.18rem;
    font-weight: 700;
}

.clima__widget--hero .clima__mini-help {
    font-size: 0.82rem;
    margin-top: 4px;
    opacity: 0.82;
}

.clima__widget--hero .clima__advice {
    display: grid;
    gap: 12px;
}

.clima__widget--hero .clima__advice-card {
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.clima__widget--hero .clima__advice-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 6px;
}

.clima__widget--hero .clima__advice-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

.clima__widget--hero .clima__confidence {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 600;
    border: 1px solid transparent;
}

.clima__confidence--good {
    background: rgba(46, 204, 113, 0.16);
    color: #e9fff2;
    border-color: rgba(46, 204, 113, 0.22);
}

.clima__confidence--medium {
    background: rgba(255, 214, 10, 0.16);
    color: #fff9da;
    border-color: rgba(255, 214, 10, 0.24);
}

.clima__confidence--alert {
    background: rgba(255, 107, 107, 0.16);
    color: #ffe8e8;
    border-color: rgba(255, 107, 107, 0.22);
}

.clima__widget--hero .clima__forecast {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.clima__widget--hero .clima__forecast-card {
    padding: 16px 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.16);
    text-align: center;
    position: relative;
    z-index: 1;
}

.clima__widget--hero .clima__forecast-day {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.clima__widget--hero .clima__forecast-icon {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #FFE082;
}

.clima__widget--hero .clima__forecast-temp {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.clima__widget--hero .clima__forecast-meta {
    font-size: 0.82rem;
    line-height: 1.45;
    opacity: 0.9;
}

.clima__widget--hero .clima__footer {
    position: relative;
    z-index: 1;
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    opacity: 0.9;
}

.clima__widget--hero .clima__footer-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 16px;
}

@media screen and (max-width: 1100px) {
    .hero-carousel {
        min-height: calc(100vh + 260px);
    }

    .clima__widget--hero .clima__content {
        grid-template-columns: 1fr;
    }

    .clima__widget--hero .clima__forecast {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 768px) {
    .hero-carousel {
        min-height: auto;
        padding-bottom: 32px;
    }

    .hero-swiper {
        height: 78vh;
        min-height: 520px;
    }

    .hero-clima {
        margin-top: -60px;
    }

    .hero__scroll {
        bottom: 150px;
    }

    .clima__widget--hero {
        padding: 18px;
    }

    .clima__widget--hero .clima__forecast {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 540px) {
    .hero-clima {
        margin-top: -40px;
    }

    .hero__scroll {
        display: none;
    }

    .clima__widget--hero .clima__headline,
    .clima__widget--hero .clima__temperature {
        flex-direction: column;
        align-items: flex-start;
    }

    .clima__widget--hero .clima__quick-stats,
    .clima__widget--hero .clima__sea-grid,
    .clima__widget--hero .clima__forecast {
        grid-template-columns: 1fr;
    }
}

/* ===== AJUSTE COMPACTO DO WIDGET DE CLIMA NA HOME ===== */
.hero-carousel {
    min-height: 100vh;
    height: auto;
    background: transparent;
}

.hero-swiper {
    height: calc(100vh - var(--header-height));
    min-height: 620px;
}

.hero-carousel .hero__scroll {
    bottom: 28px;
}

.hero-clima {
    position: relative;
    z-index: 5;
    margin-top: -58px;
    padding: 0 0 28px;
}

.hero-clima__container {
    display: grid;
    gap: 16px;
}

.hero-clima__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.hero-clima__intro {
    display: grid;
    gap: 8px;
    max-width: 760px;
    padding: 18px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 45px rgba(14, 53, 89, 0.12);
}

.hero-clima__intro h2 {
    font-family: var(--font-primary);
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    color: #0f3551;
    line-height: 1.2;
}

.hero-clima__intro p {
    max-width: 62ch;
    color: #5c7285;
    font-size: 0.96rem;
}

.hero-clima__tag {
    background: rgba(0, 126, 167, 0.08);
    color: #0b6a86;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

.clima__widget--hero {
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(12, 22, 38, 0.98) 0%, rgba(12, 41, 69, 0.97) 58%, rgba(18, 94, 125, 0.95) 100%);
    box-shadow: 0 26px 55px rgba(10, 38, 64, 0.22);
}

.clima__widget--hero::before {
    width: 180px;
    height: 180px;
    top: -70px;
    right: -55px;
    background: rgba(255, 255, 255, 0.06);
}

.clima__widget--hero::after {
    width: 130px;
    height: 130px;
    bottom: -50px;
    left: -35px;
    background: rgba(255, 255, 255, 0.04);
}

.clima__hero-shell {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.clima__hero-summary {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 16px;
    align-items: stretch;
}

.clima__hero-primary {
    display: grid;
    gap: 14px;
    align-content: start;
}

.clima__hero-current {
    display: flex;
    align-items: center;
    gap: 14px;
}

.clima__hero-location,
.clima__quick-stats,
.clima__forecast,
.clima__content--details,
.clima__footer {
    position: relative;
    z-index: 1;
}

.clima__hero-location,
.clima__quick-stats,
.clima__forecast,
.clima__panel--details,
.clima__footer {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 20px;
}

.clima__hero-location {
    padding: 16px 18px;
}

.clima__eyebrow {
    font-size: 0.74rem;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    opacity: 0.82;
}

.clima__widget--hero .clima__city {
    font-size: 1.4rem;
    line-height: 1.15;
}

.clima__widget--hero .clima__update {
    font-size: 0.86rem;
}

.clima__widget--hero .clima__icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    font-size: 1.7rem;
}

.clima__widget--hero .clima__temperature {
    margin-bottom: 0;
    gap: 14px;
}

.clima__widget--hero .clima__temperature-value {
    font-size: clamp(2.7rem, 6vw, 4rem);
}

.clima__widget--hero .clima__summary {
    font-size: 0.95rem;
    line-height: 1.45;
}

.clima__quick-stats {
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.clima__widget--hero .clima__mini-card {
    min-height: 88px;
    padding: 14px 15px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.clima__widget--hero .clima__mini-label {
    font-size: 0.78rem;
    margin-bottom: 5px;
}

.clima__widget--hero .clima__mini-value {
    font-size: 1.08rem;
}

.clima__widget--hero .clima__mini-help {
    font-size: 0.78rem;
}

.clima__hero-bottom {
    display: grid;
    gap: 12px;
}

.clima__forecast {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
}

.clima__widget--hero .clima__forecast-card {
    padding: 13px 10px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
}

.clima__widget--hero .clima__forecast-day {
    font-size: 0.8rem;
    margin-bottom: 7px;
}

.clima__widget--hero .clima__forecast-icon {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.clima__widget--hero .clima__forecast-temp {
    font-size: 0.98rem;
    margin-bottom: 5px;
}

.clima__widget--hero .clima__forecast-meta {
    font-size: 0.75rem;
}

.clima__hero-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.clima__details-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-fast);
}

.clima__details-toggle:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.clima__details {
    display: grid;
    gap: 12px;
}

.clima__content--details {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 12px;
    background: transparent;
    border: 0;
    backdrop-filter: none;
}

.clima__panel--details {
    padding: 16px;
}

.clima__panel--meta {
    display: grid;
    gap: 12px;
    align-content: start;
}

.clima__sea-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.clima__widget--hero .clima__advice-card,
.clima__note {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.clima__widget--hero .clima__advice-card {
    padding: 15px 16px;
}

.clima__widget--hero .clima__advice-text,
.clima__note {
    font-size: 0.9rem;
}

.clima__note p {
    line-height: 1.55;
}

.clima__confidence {
    width: fit-content;
}

.clima__footer {
    margin-top: 0;
    padding: 14px 16px;
}

@media screen and (max-width: 1180px) {
    .clima__hero-summary,
    .clima__content--details {
        grid-template-columns: 1fr;
    }

    .clima__forecast {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media screen and (max-width: 900px) {
    .hero-swiper {
        height: 72vh;
        min-height: 560px;
    }

    .hero-clima {
        margin-top: -40px;
    }
}

@media screen and (max-width: 768px) {
    .hero-clima {
        margin-top: -28px;
        padding-bottom: 20px;
    }

    .hero-clima__intro {
        padding: 16px 18px;
        border-radius: 20px;
    }

    .clima__widget--hero {
        padding: 14px;
        border-radius: 20px;
    }

    .clima__hero-current {
        align-items: flex-start;
    }

    .clima__forecast,
    .clima__sea-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .clima__hero-actions {
        align-items: stretch;
    }

    .clima__details-toggle {
        width: 100%;
    }
}

@media screen and (max-width: 540px) {
    .hero-swiper {
        height: 68vh;
        min-height: 500px;
    }

    .hero-clima {
        margin-top: -16px;
    }

    .clima__hero-current,
    .clima__hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .clima__quick-stats,
    .clima__forecast,
    .clima__sea-grid {
        grid-template-columns: 1fr;
    }

    .clima__hero-location,
    .clima__quick-stats,
    .clima__forecast,
    .clima__panel--details,
    .clima__footer {
        border-radius: 18px;
    }
}

/* ===== CLIMA REPOSICIONADO NA HOME ===== */
.clima--home {
    padding: 0 0 80px;
}

.clima--home .clima__widget--hero {
    margin-top: 0;
}

@media screen and (max-width: 768px) {
    .clima--home {
        padding: 0 0 60px;
    }
}


/* ===== CABEÇALHO ORGANIZADO + SELETOR DE IDIOMA ===== */
.nav {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 32px;
}

.nav__logo {
    margin-right: 0 !important;
    min-width: max-content;
}

.nav__menu {
    margin: 0 !important;
    display: flex;
    justify-content: center;
    min-width: 0;
}

.nav__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.nav__actions {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: 14px;
    flex-shrink: 0;
}

.nav__idiomas {
    position: relative;
    flex-shrink: 0;
}

.language-switcher__trigger {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-white);
    border: 1px solid rgba(0, 126, 167, 0.16);
    box-shadow: 0 10px 24px rgba(0, 126, 167, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.language-switcher__trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(0, 126, 167, 0.35);
    box-shadow: 0 14px 30px rgba(0, 126, 167, 0.18);
}

.language-switcher__menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 190px;
    padding: 10px;
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1005;
}

.nav__idiomas.is-open .language-switcher__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-switcher__option {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--color-text);
    text-align: left;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.language-switcher__option:hover {
    background: rgba(0, 168, 204, 0.08);
    color: var(--color-primary-dark);
}

.language-switcher__flag {
    font-size: 1.45rem;
    line-height: 1;
}

.language-switcher__label {
    font-weight: 500;
    white-space: nowrap;
}

@media screen and (max-width: 1100px) {
    .nav {
        gap: 20px;
    }

    .nav__list {
        gap: 22px;
    }
}

@media screen and (max-width: 968px) {
    .nav {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px;
    }

    .nav__menu {
        display: block;
        margin-right: 0 !important;
    }

    .nav__logo {
        overflow: hidden;
    }

    .nav__actions {
        gap: 10px;
        margin-left: auto;
    }

    .language-switcher__trigger {
        width: 42px;
        height: 42px;
    }

    .language-switcher__menu {
        right: 0;
        min-width: 176px;
    }
}

@media screen and (max-width: 540px) {
    .nav {
        gap: 10px;
    }

    .logo-img {
        height: 36px;
    }

    .nav__actions {
        gap: 8px;
    }

    .nav__toggle,
    .language-switcher__trigger {
        flex-shrink: 0;
    }

    .language-switcher__menu {
        right: -4px;
        min-width: 164px;
    }
}


/* ===== POUSADAS SECTION ===== */
.pousadas {
    background-color: var(--color-white);
    padding: var(--section-padding);
}

.pousadas__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.pousada__card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    cursor: pointer;
    animation: fadeInUp 0.6s ease backwards;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pousada__card:nth-child(1) { animation-delay: 0.1s; }
.pousada__card:nth-child(2) { animation-delay: 0.2s; }
.pousada__card:nth-child(3) { animation-delay: 0.3s; }
.pousada__card:nth-child(4) { animation-delay: 0.4s; }
.pousada__card:nth-child(5) { animation-delay: 0.5s; }

.pousada__card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pousada__image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.pousada__card:hover .pousada__image {
    transform: scale(1.1);
}

.pousada__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    transition: var(--transition-normal);
}

.pousada__card:hover .pousada__overlay {
    background: rgba(0, 0, 0, 0.4);
}

.pousada__content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pousada__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-primary-dark);
    margin-bottom: 10px;
}

.pousada__description {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    line-height: 1.5;
    flex-grow: 1;
}

.pousada__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.pousada__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--color-text);
}

.pousada__feature i {
    color: var(--color-primary);
    font-size: 0.8rem;
}

.pousada__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.pousada__button {
    flex: 1;
    min-width: 120px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition-fast);
    text-decoration: none;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.pousada__button--details {
    background-color: var(--color-gray-light);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.pousada__button--details:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.pousada__button--reserve {
    background: var(--gradient-ocean);
    color: var(--color-white);
    flex: 1.2;
}

.pousada__button--reserve:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== RESPONSIVE POUSADAS ===== */
@media (max-width: 768px) {
    .pousadas {
        padding: 60px 0;
    }

    .pousadas__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pousada__card {
        flex-direction: row;
        height: auto;
    }

    .pousada__image-wrapper {
        height: 150px;
        width: 150px;
        flex-shrink: 0;
    }

    .pousada__content {
        padding: 15px;
    }

    .pousada__title {
        font-size: 1.2rem;
    }

    .pousada__description {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }

    .pousada__features {
        gap: 5px;
        margin-bottom: 10px;
    }

    .pousada__feature {
        font-size: 0.8rem;
    }

    .pousada__actions {
        gap: 8px;
    }

    .pousada__button {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .pousadas__grid {
        grid-template-columns: 1fr;
    }

    .pousada__card {
        flex-direction: column;
    }

    .pousada__image-wrapper {
        height: 200px;
        width: 100%;
    }

    .pousada__actions {
        flex-direction: column;
    }

    .pousada__button {
        width: 100%;
    }
}
