/* ==========================================

ESTILOS UNIFICADOS - PROJETO VIAGENS

Consolidação: style.css + custom.css + navbar-icons.css + footer.css + meus-*.css

========================================== */

:root {
    --cor-primaria: var(--cor-primaria);
    --cor-secundaria: var(--cor-secundaria);
    --cor-hover: var(--cor-primaria);
    --bg-fundo: #f4f6fb;
    --texto-card: #42444b;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;

    --text-primary: var(--cor-primaria) !important;
    --text-secondary: var(--cor-secundaria) !important;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-fundo);
    color: #333;
    overflow-x: hidden;
}

a.btn,

.btn {
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

a.btn:hover,

.btn:hover {
    background: linear-gradient(135deg,
            var(--cor-hover),
            color-mix(in srgb, var(--cor-primaria) 80%, black));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-danger {
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    padding: 8px 18px;
}

.btn-outline-danger:hover {
    background: #dc3545;
    color: #fff;
}

.btn-danger-solid {
    background: #dc3545;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-danger-solid:hover {
    background: #bb2d3b;
    color: #fff;
    transform: translateY(-1px);
}

.btn-danger-outline {
    background: transparent;
    color: #dc3545;
    border: 2px solid #dc3545;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-danger-outline:hover {
    background: #dc3545;
    color: #fff;
    transform: translateY(-1px);
}

.btn-remove {
    background: transparent;
    color: #dc3545;
    border: none;
    padding: 5px 10px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.btn-remove:hover {
    background: rgba(220, 53, 69, 0.1);
    color: #bb2d3b;
}

.btn-clear-cart {
    background: transparent;
    color: #dc3545;
    border: 2px dashed #dc3545;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-clear-cart:hover {
    background: #dc3545;
    color: #fff;
    border-style: solid;
    transform: translateY(-1px);
}

/* ==========================================

LOGIN PAGE

========================================== */

.login-page {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #1a1a2e 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-page .back-to-checkout {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    margin-top: 20px;
    transition: opacity 0.3s;
}

.login-page .back-to-checkout:hover {
    opacity: 1;
    text-decoration: underline;
}

.login-container {
    max-width: 550px;
    width: 100%;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.login-header-full {
    width: 100%;
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
}

.login-header {
    color: white;
    padding: 40px 30px;
    text-align: center;
    max-width: 450px;
    margin: 0 auto;
}

.login-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.login-header p {
    margin: 0;
    opacity: 0.95;
    font-size: 14px;
}

.login-body {
    padding: 40px 30px;
}

.login-body .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.login-body .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.login-body .form-control:focus {
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.login-body .btn-login {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: white;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-body .btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.login-body .divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.login-body .divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e0e0;
}

.login-body .divider span {
    background: white;
    padding: 0 15px;
    position: relative;
    color: #999;
    font-size: 14px;
}

.login-footer {
    padding: 0 30px 30px;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.login-footer p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.login-footer a {
    color: var(--cor-primaria);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.login-footer a:hover {
    color: var(--cor-secundaria);
    text-decoration: underline;
}

.login-info-box {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--cor-primaria);
    font-size: 14px;
    color: #666;
}

/* ==========================================

CHECKOUT ENTRY

========================================== */

.checkout-entry-page {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #1a1a2e 100%);
    min-height: 100vh;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-entry-container {
    max-width: 900px;
    width: 100%;
}

.checkout-header {
    text-align: center;
    margin-bottom: 50px;
    color: white;
    width: 100%;
}

.checkout-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.checkout-header .checkout-logo {
    width: 80px;
    height: auto;
}

.checkout-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.checkout-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.checkout-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
}

.checkout-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.checkout-card-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--cor-primaria);
}

.checkout-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.checkout-card p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.checkout-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.checkout-card li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.checkout-card li i {
    color: #27ae60;
    font-weight: bold;
}

.checkout-card-button {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
}

.checkout-card-button:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.checkout-divider {
    text-align: center;
    margin: 40px 0;
    color: white;
}

.checkout-divider-line {
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 20px 0;
}

.checkout-divider-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cart-summary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 25px;
    color: white;
    margin-top: 40px;
    backdrop-filter: blur(10px);
}

.cart-summary h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.cart-items {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.cart-items li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.9;
}

.cart-items li .qty {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.cart-total {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
}

.back-to-cart {
    text-align: center;
    margin-top: 30px;
}

.back-to-cart a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-to-cart a:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .checkout-header h1 {
        font-size: 1.8rem;
        gap: 10px;
    }

    .checkout-header p {
        font-size: 0.95rem;
    }

    .checkout-cards {
        gap: 20px;
    }

    .checkout-card {
        padding: 30px 20px;
    }

    .checkout-card h2 {
        font-size: 1.5rem;
    }

    .checkout-logo {
        width: 60px;
    }
}

/* ==========================================

HEADER TOPBAR

========================================== */

.header-topbar {
    background-color: var(--cor-secundaria);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-topbar a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.header-topbar a:hover {
    color: #fff;
}

.header-topbar .social-icons a {
    margin-left: 15px;
    font-size: 1rem
}

.header-topbar .topbar-contact i {
    margin-right: 6px;
    color: var(--cor-primaria);
}

.header-topbar .topbar-contact span {
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
}

/* ==========================================

NAVBAR CUSTOMIZADA

========================================== */

.navbar-saas {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 85px;
}

.navbar-logo {
    max-height: 70px;
}

.navbar-saas .nav-link {
    font-size: 1.25rem;
    font-weight: 500;
    transition: color 0.3s;
    padding: 1.7rem 0;
    margin-right: 1.5rem;
}

.navbar-saas .nav-link:hover,

.navbar-saas .nav-link.active {
    color: var(--cor-primaria) !important;
}

.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-whatsapp-nav:hover {
    background: #1ebc59;
    transform: translateY(-1px);
}

/* ==========================================

HEADER HERO CAROUSEL

========================================== */

.hero-carousel {
    position: relative;
    height: clamp(550px, 80vh, 850px);
    width: 100%;
    background-color: var(--cor-secundaria);
}

.hero-carousel .carousel-inner,

.hero-carousel .carousel-item {
    height: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.hero-caption {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 15px;
    margin-bottom: 25px;
}

.hero-sub-title span {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 15px;
    border-radius: 20px;
}

/* ==========================================

SEARCH CONTAINER / FILTER BAR

========================================== */

.search-container {
    margin: -60px auto 15px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 10;
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.filter-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
}

.filter-col label {
    font-size: 13px;
    font-weight: 600;
    color: var(--cor-secundaria);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-input-group {
    position: relative;
}

.filter-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 18px;
    pointer-events: none;
}

.filter-input-group input,

.filter-input-group select {
    width: 100%;
    padding: 14px 15px 14px 45px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    background: #fff;
    color: #444;
    transition: border 0.3s;
    background-image: var(--bs-form-select-bg-img);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

.filter-input-group input:focus,

.filter-input-group select:focus {
    border-color: var(--cor-primaria);
}

.filter-col.btn-col {
    min-width: 150px;
    flex: 0;
}

.btn-search {
    width: 100%;
    background: var(--cor-primaria);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-search:hover {
    background: var(--cor-hover);
    transform: translateY(-1px);
}

.btn-limpar {
    background: #6c757d;
    color: #fff;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-limpar:hover {
    background: #5a6268;
    color: #fff;
}

/* ==========================================

FILTERED LIST (Tags de Filtros Ativos)

========================================== */

.filtered-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 10px 0 15px;
}

.filtered-item {
    display: inline-flex;
}

.filtered-item .remove-filter {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #e9ecef;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 13px;
    color: #495057;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filtered-item .remove-filter:hover {
    background: #dc3545;
    border-color: #dc3545;
    color: #fff;
}

.filtered-item .remove-filter:hover i {
    color: #fff;
}

.filtered-item .remove-filter i {
    font-size: 12px;
    color: #dc3545;
}

/* ==========================================

GRID DE PACOTES

========================================== */

.pacotes-grid {
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

/* Slider de Pacotes */

.pacotes-slider-wrapper {
    position: relative;
    margin: 0 auto 60px;
    overflow: visible;
    padding: 0;
}

.pacotes-slider-wrapper .slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.pacotes-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 10px 40px;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.pacotes-slider .pct-card {
    flex: 0 0 310px;
    max-width: 310px;
    scroll-snap-align: start;
}

/* Scrollbar do slider */

.pacotes-slider::-webkit-scrollbar {
    height: 6px;
}

.pacotes-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.pacotes-slider::-webkit-scrollbar-thumb {
    background: var(--cor-primaria);
    border-radius: 3px;
    opacity: 0.7;
}

.pacotes-slider::-webkit-scrollbar-thumb:hover {
    opacity: 1;
}

/* Esconder scrollbar mas permitir scroll */

.pacotes-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pacotes-slider::-webkit-scrollbar {
    display: none;
}

.pacotes-slider:hover::-webkit-scrollbar {
    display: block;
}

/* Setas de navegação do slider */

.slider-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: 1px solid var(--cor-primaria);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cor-secundaria);
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

.slider-nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.slider-nav-btn.prev {
    left: 10px;
}

.slider-nav-btn.next {
    right: 10px;
}

/* Esconder setas nas Pontas */

.slider-nav-btn.hidden {
    display: none !important;
}

/* Responsivo */

@media (max-width: 991px) {
    .slider-nav-btn {
        display: none !important;
    }
}

.slider-nav-btn:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.prev {
    left: -40px;
}

.slider-nav-btn.next {
    right: -40px;
}

/* Esconder setas quando responsivo */

@media (max-width: 991px) {
    .slider-nav-btn {
        display: none !important;
    }
}

/* Mostrar setas quando desktop */

@media (min-width: 992px) {
    .slider-nav-btn {
        display: flex !important;
    }
}

.slider-nav-btn.prev:hover {
    transform: translateY(-50%) scale(1.1);
}

.slider-nav-btn.next:hover {
    transform: translateY(-50%) scale(1.1);
}

.pacotes-slider-wrapper .slider-nav-btn {
    display: flex;
}

/* Esconder setas nas Pontas */

.slider-nav-btn.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Desktop: slider horizontal */

@media (min-width: 992px) {
    .pacotes-slider {
        flex-wrap: nowrap;
        overflow-x: auto;
    }
}

/* Mobile (<768px) */

@media (max-width: 767px) {
    .pacotes-slider .pct-card {
        flex: 0 0 300px;
        max-width: 300px;
    }
}

@media(min-width: 768px) {
    .pacotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .pacotes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ==========================================

PACKAGE CARD

========================================== */

.pct-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pct-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

.pct-img-wrap {
    position: relative;
    height: 180px;
    background: #eee;
}

.pct-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pct-badge-destaque {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--cor-primaria);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pct-badge-vagas {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2e3b52;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pct-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pct-cat {
    background: #ebfcf4;
    color: #0f8f53;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    align-self: flex-start;
}

.pct-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--cor-secundaria);
    margin-bottom: 5px;
    line-height: 1.3;
}

.pct-dest {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.pct-desc {
    font-size: 14px;
    color: var(--texto-card);
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pct-info-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    color: #666;
}

.pct-info-bar span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.pct-footer {
    margin-top: auto;
    border-top: 1px solid #eee;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pct-price-box {
    display: flex;
    flex-direction: column;
}

.pct-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
}

.pct-price {
    font-size: 22px;
    font-weight: 900;
    color: var(--cor-secundaria);
}

.pct-price-sub {
    font-size: 11px;
    color: #777;
}

.btn-reservar {
    background: var(--cor-primaria);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s;
}

.btn-reservar:hover {
    background: var(--cor-hover);
    transform: translateY(-1px);
}

.btn-ver-detalhes {
    display: block;
    width: 100%;
    text-align: center;
    background-color: var(--cor-primaria);
    color: #ffffff !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 5px 0 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-ver-detalhes:hover {
    background-color: var(--cor-secundaria);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* ==========================================

PAGE HEADER CUSTOM (Quem Somos, Contato, etc)

========================================== */

.page-header-custom {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: #fff;
    margin-bottom: 40px;
}

.page-header-custom h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
}

/* Variações do Page Header */

.page-header-custom-primary {
    background: var(--cor-primaria);
    color: #fff;
}

.page-header-secondary {
    background: var(--cor-secundaria);
    color: #fff;
}

.page-header-overlay {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%), var(--cor-primaria);
    color: #fff;
}

.page-header-gradient {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: #fff;
}

.page-header-light {
    background: #fff;
    color: var(--cor-secundaria);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-header-light h1 {
    color: var(--cor-secundaria);
}

.page-header-card {
    background: #fff;
    color: var(--cor-secundaria);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    margin: -30px auto 40px;
    padding: 40px 30px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
}

.page-header-card h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--cor-secundaria);
}

.page-header-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* Com container interno */

.page-header-custom .container {
    max-width: 1200px;
    margin: 0 auto;
}

.page-header-title p {
    font-size: 1.15rem;
    opacity: 0.9;
}

/* ==========================================

SOBRE / QUEM SOMOS

========================================== */

.sobre-container {
    margin: 0 auto 60px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.sobre-img {
    flex: 1;
    min-width: 300px;
    background-color: #eee;
}

.sobre-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.sobre-content {
    flex: 1.5;
    min-width: 300px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sobre-content h2 {
    font-weight: 800;
    color: var(--cor-secundaria);
    margin-bottom: 25px;
    font-size: 2.2rem;
    position: relative;
}

.sobre-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--cor-primaria);
    margin-top: 15px;
    border-radius: 2px;
}

.sobre-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

/* ==========================================

CONTATO

========================================== */

.contato-container {
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contato-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contato-card i {
    font-size: 40px;
    color: var(--cor-primaria);
    margin-bottom: 20px;
}

.contato-card h3 {
    color: var(--cor-secundaria);
    margin-bottom: 15px;
}

.contato-card p {
    color: #666;
    line-height: 1.6;
}

.contato-form {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contato-form h3 {
    color: var(--cor-secundaria);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #444;
}

.form-group input,

.form-group textarea,

.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,

.form-group textarea:focus,

.form-group select:focus {
    outline: none;
    border-color: var(--cor-primaria);
}

.btn-enviar {
    background: var(--cor-primaria);
    color: #fff;
    padding: 14px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-enviar:hover {
    background: var(--cor-hover);
    transform: translateY(-1px);
}

/* ==========================================

PACOTES DETALHES

========================================== */

.detalhes-container {
    margin: 0 auto 60px;
}

.detalhes-header {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.detalhes-gallery {
    position: relative;
    height: 500px;
}

.detalhes-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detalhes-info {
    padding: 30px;
}

.detalhes-info h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cor-secundaria);
    margin-bottom: 10px;
}

.detalhes-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
}

.detalhes-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detalhes-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--cor-secundaria);
    margin-bottom: 20px;
}

.detalhes-desc {
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.detalhes-inclui {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.detalhes-inclui h3 {
    color: var(--cor-secundaria);
    margin-bottom: 20px;
}

.inclui-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.inclui-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.inclui-list li i {
    color: var(--cor-primaria);
}

/* ==========================================

EMPTY STATE

========================================== */

.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: #777;
}

.empty-state i {
    font-size: 50px;
    color: #ccc;
    margin-bottom: 20px;
    display: inline-block;
}

/* ==========================================

SCROLL TOP BUTTON

========================================== */

.scroll-top {
    position: fixed;
    bottom: 27px !important;
    right: 100px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    background: var(--cor-primaria);
    z-index: 100000;
    transition: all 0.35s ease-in-out;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================

WHATSAPP FLOATING BUTTON

========================================== */

#whatsapp-master {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
}

.whatsapp-master-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    animation: pulse 2s infinite;
}

.whatsapp-icon svg {
    width: 34px;
    height: 34px;
    display: block;
}

.whatsapp-icon svg path {
    fill: #ffffff !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================

FOOTER

========================================== */

.footer {
    background: var(--cor-secundaria);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
}

/* ==========================================

RESPONSIVE

========================================== */

@media(max-width: 991px) {
    .hero-carousel {
        height: clamp(350px, 60vh, 500px);
    }

    .hero-caption {
        padding: 0 15px;
        top: 50%;
    }

    .hero-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
        margin-bottom: 15px;
    }

    .hero-sub-title span {
        font-size: 0.85rem;
        padding: 4px 12px;
    }

    .search-container {
        margin: -30px 0px 15px;
    }

    .search-container {
        display: block;
    }

    .sobre-container {
        flex-direction: column;
    }

    .sobre-img img {
        min-height: 300px;
    }

    .sobre-content {
        padding: 30px;
    }

    .detalhes-gallery {
        height: 300px;
    }

    .detalhes-info h1 {
        font-size: 1.8rem;
    }
}

/* Mobile Filters */

@media (max-width: 991px) {
    .search-container {
        display: none;
    }

    .mobile-filters {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin: 20px 0 20px;
        overflow: hidden;
    }

    .mobile-search-trigger {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 15px 20px;
        cursor: pointer;
        font-weight: 500;
        color: #333;
    }

    .mobile-search-trigger i:first-child {
        color: var(--cor-primaria);
    }

    .mobile-search-trigger span {
        flex: 1;
    }

    .mobile-search-trigger i.bi-chevron-down {
        transition: transform 0.3s ease;
    }

    .mobile-search-trigger i.bi-chevron-down.rotated {
        transform: rotate(180deg);
    }

    .mobile-filters-content {
        display: none;
        padding: 0 20px 20px;
        background: #fff;
    }

    .mobile-filters-content.active {
        display: block;
    }

    .mobile-filter-form .filter-col {
        margin-bottom: 15px;
    }
}

@media(max-width: 576px) {
    .hero-carousel {
        height: clamp(220px, 50vh, 220px);
    }

    .filter-bar {
        flex-direction: column;
    }

    .filter-col {
        width: 100%;
    }

    .filter-col.btn-col {
        width: 100%;
    }

    .page-header-custom h1 {
        font-size: 2rem;
    }

    .contato-form {
        padding: 20px;
    }
}

/* ==========================================

CONTATO PAGE - ESTILOS ESPECÍFICOS

========================================== */

.contato-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto 60px;
    gap: 30px;
}

@media(min-width: 992px) {
    .contato-info {
        flex: 1;
    }

    .contato-form {
        flex: 1.5;
    }
}

.contato-info-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contato-info-card h3 {
    font-weight: 800;
    color: var(--cor-secundaria);
    margin-bottom: 25px;
}

.contato-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contato-info-card .info-item .icon {
    background-color: rgba(var(--cor-primaria), 0.1);
    color: var(--cor-primaria);
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contato-info-card .info-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.contato-info-card .info-item p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.btn-whatsapp-big {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #25d366;
    color: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    margin-top: 35px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.2s;
}

.btn-whatsapp-big:hover {
    color: #fff;
    transform: translateY(-1px);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.contato-form-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.contato-form-card h3 {
    font-weight: 800;
    color: var(--cor-secundaria);
    margin-bottom: 10px;
}

.contato-form-card p {
    color: #666;
    margin-bottom: 25px;
}

.contato-form-card .form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    background: #fafafa;
    font-size: 15px;
    transition: all 0.3s;
}

.contato-form-card .form-control:focus {
    background: #fff;
    border-color: var(--cor-primaria);
    box-shadow: none;
}

/* ==========================================

NAVBAR / HEADER

========================================== */

/* Header Topbar */

.header-topbar {
    background-color: var(--cor-secundaria);
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    padding: 10px 0;
}

.header-topbar .container-fluid {
    max-width: 1400px;
}

.header-topbar .row {
    width: 100%;
}

.header-topbar .topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    white-space: nowrap;
}

.header-topbar .topbar-link:hover {
    color: #fff;
    transform: translateY(-1px);
}

.header-topbar .topbar-link i {
    font-size: 14px;
    color: var(--cor-primaria);
}

.header-topbar .vr {
    opacity: 0.3;
    height: 16px;
    width: 1px;
}

.header-topbar .topbar-social {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    transition: all 0.3s;
    margin: 0 6px;
}

.header-topbar .topbar-social:hover {
    color: var(--cor-primaria);
    transform: translateY(-2px);
}

/* Navbar Desktop */

.navbar-custo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-custo .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-custo .navbar-logo img {
    max-height: 60px;
    width: auto;
}

.navbar-desktop-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    position: relative;
    z-index: 1000;
}

.navbar-desktop-menu>li {
    position: relative;
}

.navbar-desktop-menu .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 18px;
    color: var(--cor-secundaria);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.2s;
}

.navbar-desktop-menu .nav-link:hover,

.navbar-desktop-menu .nav-link.active {
    color: var(--cor-primaria);
    background: rgba(0, 0, 0, 0.03);
}

.navbar-desktop-menu .nav-link i {
    font-size: 12px;
    transition: transform 0.2s;
}

/* Dropdown Desktop */

.navbar-desktop-menu .sub-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #ffffff !important;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    padding: 10px 0;
    margin: 0;
    list-style: none;
}

.navbar-desktop-menu .menu-item-has-children:hover>.sub-menu {
    display: block !important;
    visibility: visible !important;
}

.navbar-desktop-menu .menu-item-has-children>a {
    position: relative;
    z-index: 2;
}

.navbar-desktop-menu .menu-item-has-children:hover>a {
    color: var(--cor-primaria) !important;
    background: rgba(0, 0, 0, 0.03);
}

.navbar-desktop-menu .menu-item-has-children:hover>a i.bi-chevron-down {
    transform: rotate(180deg);
}

.navbar-desktop-menu .sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #444;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.navbar-desktop-menu .sub-menu li a:hover {
    color: var(--cor-primaria) !important;
    background: rgba(0, 0, 0, 0.03);
    padding-left: 25px;
}

/* Botão WhatsApp Desktop */

.btn-whatsapp-desktop {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1rem;
    transition: background 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

.btn-whatsapp-desktop:hover {
    background: #1ebc59;
    transform: translateY(-1px);
}

/* Social Icons Navbar */

.navbar-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

.navbar-social-icons a {
    color: var(--cor-secundaria);
    font-size: 18px;
    transition: color 0.2s;
}

.navbar-social-icons a:hover {
    color: var(--cor-primaria);
}

/* Navbar Mobile */

.navbar-custo-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.navbar-custo-mobile .navbar-logo img {
    max-height: 50px;
    width: auto;
}

.navbar-toggle {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--cor-secundaria);
}

/* Overlay */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Offcanvas Menu */

.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    max-width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.offcanvas-menu.active {
    right: 0;
}

.offcanvas-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.offcanvas-header .logo img {
    max-height: 50px;
}

.btn-close-menu {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--cor-secundaria);
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

/* Offcanvas Nav Menu */

.nav-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.nav-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: var(--cor-secundaria);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.2s;
}

.menu-link:hover,

.menu-link.active {
    color: var(--cor-primaria);
}

.toggle-icon {
    font-size: 18px;
    font-weight: 400;
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.submenu.open {
    max-height: 300px;
}

.submenu li {
    border: none;
    padding-left: 15px;
}

.submenu li a {
    display: block;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.submenu li a:hover {
    color: var(--cor-primaria);
}

/* Contact Section Offcanvas */

.contact-section {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-top: auto;
}

.contact-section-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--cor-secundaria);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.contact-item {
    margin-bottom: 15px;
}

.contact-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #333;
}

.contact-item .icon {
    width: 40px;
    height: 40px;
    background: var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

.contact-item .text {
    display: flex;
    flex-direction: column;
    font-size: 13px;
}

.contact-item .text strong {
    color: var(--cor-secundaria);
    font-size: 14px;
}

/* Social Icons Offcanvas */

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--cor-secundaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.social-icons a:hover {
    background: var(--cor-primaria);
}

/* Responsivo Navbar */

@media(max-width: 991px) {
    .navbar-toggle {
        display: block;
    }
}

/* ==========================================

PACOTES DETALHES PAGE

========================================== */

/* Navbar Detalhes */

.det-nav {
    background: var(--cor-secundaria);
    padding: 14px 0;
}

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

.det-nav .brand {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.det-nav .navbar-logo {
    height: 52px;
}

.det-nav .back-btn {
    display: inline-flex;
    align-items: center;
    background: var(--cor-primaria);
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.det-nav .back-btn:hover {
    background: var(--cor-hover);
    transform: translateY(-1px);
    text-decoration: none;
}

.det-nav .back-btn i {
    color: inherit;
    text-decoration: none;
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #16213e 60%, #0f3460 100%);
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero .hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    color: #fff;
    font-size: 2.4rem;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    margin-bottom: 12px;
}

.hero-dates {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge-date {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Layout */

.page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

@media (max-width: 1024px) {
    .page-wrapper {
        grid-template-columns: 1fr 320px;
        gap: 24px;
    }
}

@media (max-width: 900px) {
    .page-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        grid-row: 2;
    }
}

/* Cards */

.card-sec {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 24px;
    margin-bottom: 20px;
}

.card-sec:last-child {
    margin-bottom: 0;
}

.sec-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cor-secundaria);
    margin-bottom: 18px;
}

.sec-title .icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background: var(--cor-primaria);
    color: #fff;
}

/* Ícones coloridos por seção */

.sec-title .icon.icon-galeria {
    background: #fff3e0;
    color: #f58014;
}

.sec-title .icon.icon-sobre {
    background: #eef3ff;
    color: #4e73df;
}

.sec-title .icon.icon-hospedagem {
    background: #e8f8f2;
    color: #1cc88a;
}

.sec-title .icon.icon-embarque {
    background: #e8f8f2;
    color: #1cc88a;
}

.sec-title .icon.icon-levar {
    background: #fff3cd;
    color: #f6c23e;
}

.sec-title .icon.icon-aeroporto {
    background: #eef3ff;
    color: #4e73df;
}

.sec-title .icon.icon-video {
    background: #fde8e5;
    color: #e74a3b;
}

.sec-title .icon.icon-inclui {
    background: #d4f8e8;
    color: #1cc88a;
}

.sec-title .icon.icon-nao-inclui {
    background: #fde8e5;
    color: #e74a3b;
}

.sec-title .icon.icon-itinerario {
    background: #fff3e0;
    color: #f58014;
}

.sec-title .icon.icon-faq {
    background: #fff0fb;
    color: #e74a3b;
}

.sec-title .icon.icon-politica {
    background: #ffd082;
    color: #856404;
}

.sec-title .icon.icon-galeria-grid {
    background: #fff3e0;
    color: #f58014;
}

/* ==========================================

ESTILOS ADICIONAIS - PACOTES DETALHES

========================================== */

/* Galeria Swiper Wrapper */

.galeria-swiper-wrapper {
    width: 100%;
}

.galeria-swiper-wrapper .swiper-main {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 12px;
}

.galeria-swiper-wrapper .swiper-main .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galeria-swiper-wrapper .swiper-thumb {
    height: 80px;
}

.galeria-swiper-wrapper .swiper-thumb .swiper-slide {
    opacity: 0.6;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
}

.galeria-swiper-wrapper .swiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
    outline: 2px solid var(--cor-primaria);
}

.galeria-swiper-wrapper .swiper-thumb .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Imagem fixa única */

.img-fixa-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.img-fixa-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* Título da seção de Hospedagem */

.hotel-titulo {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 14px;
}

/* Check-in/Check-out horário */

.hosp-item p {
    color: #f58014;
}

/* Labels pequenos (Acomodações, Crianças) */

.label-pequeno {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 8px;
}

.label-pequeno i {
    margin-right: 4px;
}

.label-box {
    margin-top: 14px;
}

.valor-crianca {
    color: #e74a3b;
    font-weight: 600;
}

/* Preço original (riscado) */

.preco-antigo-box {
    background: color-mix(in srgb, var(--cor-primaria) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--cor-primaria) 25%, transparent);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
}

.preco-antigo-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.preco-antigo-valor {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.97rem;
    font-weight: 500;
}

/* Sidebar Info Rápida */

.card-sec-info {
    margin-top: 16px;
}

/* Grid Embarque + O que Levar */

.embarque-levar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.embarque-levar-grid .card-sec {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .embarque-levar-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Embarque */

.card-sec-embarque {
    margin-bottom: 0;
}

/* Card O que Levar */

.card-sec-levar {
    margin-bottom: 0;
    background: linear-gradient(135deg, #fffdf0, #fff8e1);
}

/* Item deEmbarque */

.embarque-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.embarque-item i {
    color: #1cc88a;
}

/* Item de Aeropuerto */

.aeroporto-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.aeroporto-item i {
    color: #4e73df;
}

/* Card Inclui */

.card-sec-inclui {
    background: linear-gradient(135deg, #f0fff7, #e8fdf2);
}

/* Card Não Inclui */

.card-sec-nao-inclui {
    background: linear-gradient(135deg, #fff5f5, #fdf0f0);
}

/* Resposta FAQ */

.faq-resposta {
    color: #555;
    font-size: 0.9rem;
    padding: 0 0 8px;
}

/* Política de Cancelamento */

.politica-box {
    padding: 0;
}

.politica-box p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Compartilhar */

.card-sec-compartilhar {
    text-align: center;
}

.compartilhar-msg {
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 10px;
}

/* Preço original (riscado) */

.preco-antigo-box {
    background: color-mix(in srgb, var(--cor-primaria) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--cor-primaria) 25%, transparent);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
}

.preco-antigo-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
}

.preco-antigo-valor {
    text-decoration: line-through;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.97rem;
    font-weight: 500;
}

/* Sidebar Info Rápida */

.card-sec-info {
    margin-top: 16px;
}

.info-rapida-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.info-rapida-item:last-child {
    margin-bottom: 0;
}

.info-rapida-item i {
    width: 20px;
    text-align: center;
}

.info-rapida-item strong {
    font-weight: 600;
}

/* Vagas */

.vagas-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.vagas-bar {
    background: #eee;
    border-radius: 30px;
    height: 6px;
    flex: 1;
    overflow: hidden;
}

.vagas-bar-fill {
    height: 6px;
    border-radius: 30px;
}

.vagas-alta {
    background: #1cc88a;
}

.vagas-media {
    background: #f6c23e;
}

.vagas-baixa {
    background: #e74a3b;
}

/* Label pequeno na sidebar */

.info-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}

.info-label i {
    color: #858796;
}

/* Grid de 2 colunas no Mobile */

@media (max-width: 768px) {
    .info-rapida-grid {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
}

.info-rapida-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.info-rapida-item i {
    width: 20px;
}

.info-rapida-item strong {
    font-weight: 600;
}

/* Vagas - barra de progresso */

.vagas-bar {
    background: #eee;
    border-radius: 30px;
    height: 6px;
    margin-bottom: 12px;
    overflow: hidden;
}

.vagas-bar-fill {
    height: 6px;
    border-radius: 30px;
    transition: width 0.3s;
}

.vagas-bar-fill.vagas-alta {
    background: #1cc88a;
}

.vagas-bar-fill.vagas-media {
    background: #f6c23e;
}

.vagas-bar-fill.vagas-baixa {
    background: #e74a3b;
}

/* Sidebar Info Rápida */

.card-sec-info {
    margin-top: 16px;
}

/* Modal/Lightbox (futuro) */

.lightbox-img {
    cursor: pointer;
    transition: opacity 0.2s;
}

.lightbox-img:hover {
    opacity: 0.85;
}

/* Galeria */

.swiper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
    aspect-ratio: 16/9;
    background: #f0f0f0;
}

.swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-thumb {
    height: 80px;
}

.swiper-thumb .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.swiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
    outline: 3px solid var(--cor-primaria);
}

.swiper-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Galeria Grid */

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.galeria-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
}

.galeria-grid img:hover {
    opacity: 0.85;
}

/* Descrição */

.desc-text {
    color: #555;
    line-height: 1.8;
    white-space: pre-line;
}

/* Hospedagem */

.hosp-img {
    width: 100%;
    height: 220px;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #f0f0f0;
}

.hosp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.hosp-item h4 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #999;
    margin-bottom: 4px;
}

.hosp-item p {
    font-weight: 600;
    color: var(--cor-secundaria);
}

.quarto-badge {
    display: inline-block;
    background: #f0f5ff;
    border: 1px solid #c7d7fc;
    color: #1a4bcc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 500;
    margin: 3px;
}

.criancas-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
    margin-top: 8px;
}

.criancas-table th {
    background: var(--bg-fundo);
    padding: 8px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid #e8ecf5;
}

.criancas-table td {
    padding: 8px 12px;
    border-bottom: 1px solid #f0f2f8;
}

/* Embarque / Aeroportos */

.embarque-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

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

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

.embarque-item {
    background: #f8f9fc;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aeroporto-item {
    background: #eef3ff;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Levar / Inclusos */

.list-items {
    list-style: none;
}

.list-items li {
    padding: 6px 0;
    border-bottom: 1px solid #f0f2f8;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
}

.list-items li:last-child {
    border: none;
}

.list-items .icon-ok {
    color: #1cc88a;
    font-size: 0.85rem;
}

.list-items .icon-no {
    color: #e74a3b;
    font-size: 0.85rem;
}

.list-items .icon-bag {
    color: var(--cor-primaria);
    font-size: 0.85rem;
}

/* Itinerário */

.itinerary-timeline {
    position: relative;
    padding-left: 32px;
}

.itinerary-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cor-primaria), var(--cor-secundaria));
}

.itin-day {
    position: relative;
    margin-bottom: 20px;
}

.itin-dot {
    position: absolute;
    left: -26px;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cor-primaria);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--cor-primaria);
}

.itin-title {
    font-weight: 700;
    color: var(--cor-primaria);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.itin-desc {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.65;
}

/* FAQ */

.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.93rem;
    background: #fff;
    gap: 12px;
}

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

.faq-answer {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.open {
    max-height: 500px;
    padding: 12px 18px;
}

.faq-arrow {
    transition: 0.3s;
    font-size: 0.8rem;
    color: #999;
    flex-shrink: 0;
}

.faq-question.active .faq-arrow {
    transform: rotate(180deg);
}

/* Política */

.politica-box {
    background: linear-gradient(135deg, #fff8ec, #fff3e0);
    border: 1px solid #ffd082;
    border-radius: 12px;
    padding: 20px 24px;
}

.invest-card {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #0f3460 100%);
    border-radius: 16px;
    padding: 28px;
    color: #fff;
    box-shadow: 0 8px 32px rgba(15, 52, 96, 0.4);
}

.invest-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--cor-primaria);
    font-weight: 600;
    margin-bottom: 6px;
}

.invest-price {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.invest-sub {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.invest-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin: 18px 0;
}

.invest-section-title {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
}

.parcela-box {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 12px;
}

.parcela-main {
    font-size: 1.4rem;
    font-weight: 700;
}

.parcela-sub {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
}

.pag-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    padding: 5px 0;
}

.pag-item i {
    color: #1cc88a;
    font-size: 0.8rem;
}

.btn-reservar-detalhes {
    display: block;
    width: 100%;
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    margin-top: 18px;
    transition: background 0.2s, transform 0.2s;
    letter-spacing: 0.02em;
}

.btn-reservar-detalhes:hover {
    background: var(--cor-hover);
    transform: translateY(-1px);
}

.agent-box {
    margin-top: 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 14px;
    text-align: center;
}

.agent-box .agent-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.agent-box .agent-name {
    font-size: 1rem;
    font-weight: 700;
}

.agent-box .agent-agencia {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Compartilhar */

.share-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 8px 0;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
    transition: 0.2s;
}

.share-btn:hover {
    transform: scale(1.12);
}

.share-btn.wpp {
    background: #25D366;
}

.share-btn.tele {
    background: #2CA5E0;
}

.share-btn.copy {
    background: #6c757d;
}

/* Video */

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #0f3460 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer Detalhes */

.det-footer {
    background: var(--cor-secundaria);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 24px;
    font-size: 0.82rem;
    margin-top: 20px;
}

.footer-credit {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-credit:hover {
    color: var(--cor-primaria);
}

/* ==========================================

RESPONSIVIDADE PACOTES DETALHES

========================================== */

@media (max-width: 768px) {
    .det-nav .inner {
        flex-direction: row;
        gap: 10px;
    }

    .det-nav .navbar-logo {
        height: 40px;
    }

    .det-nav .back-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .det-nav .back-btn span {
        display: none;
    }

    .hero {
        height: 280px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .badge-date {
        padding: 5px 12px;
        font-size: 0.8rem;
    }

    .page-wrapper {
        padding: 20px 12px;
        gap: 20px;
    }

    .card-sec {
        padding: 16px;
        border-radius: 10px;
    }

    .sec-title {
        font-size: 0.95rem;
    }

    .invest-card {
        padding: 20px;
        border-radius: 12px;
    }

    .invest-price {
        font-size: 2rem;
    }

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

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

    .share-row {
        gap: 8px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .video-wrapper {
        border-radius: 10px;
    }

    .det-footer {
        padding: 20px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 220px;
    }

    .hero h1 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .hero-dates {
        gap: 8px;
    }

    .badge-date {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .page-wrapper {
        padding: 15px 10px;
    }

    .card-sec {
        padding: 14px;
        margin-bottom: 14px;
    }

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

    .invest-price {
        font-size: 1.75rem;
    }

    .parcela-main {
        font-size: 1.2rem;
    }

    .btn-reservar-detalhes {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* ==========================================

TOPBAR SOCIAL ICONS AND WHATSAPP

Consolidado de navbar.php

========================================== */

.topbar-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.topbar-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: white;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.topbar-social-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.topbar-contact-icons {
    flex-wrap: wrap;
}

/* ==========================================

FOOTER MODERNO

Consolidado de footer.php

========================================== */

.modern-footer {
    background: var(--cor-secundaria);
    color: #f0f0f0;
    padding-top: 40px;
    padding-bottom: 0;
    margin-top: 60px;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    position: relative;
    clear: both;
    float: left;
}

.footer-main {
    padding-bottom: 20px;
    clear: both;
}

.footer-separator {
    width: 100%;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-column {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    display: block;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-brand h3 {
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    color: white;
    letter-spacing: -0.5px;
}

.footer-brand-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0 0 15px 0;
}

.footer-licensing {
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.4;
    margin: 0;
}

.footer-column-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-column-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: var(--cor-primaria);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links li a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-links li a i {
    color: var(--cor-primaria);
    transition: all 0.3s ease;
}

.footer-links li a:hover i {
    color: color-mix(in srgb, var(--cor-primaria) 40%, transparent);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-contact-item i {
    font-size: 1.2rem;
    color: var(--cor-primaria);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item strong {
    display: block;
    color: white;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.footer-contact-item a,

.footer-contact-item span {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--cor-primaria);
}

.footer-bottom {
    background: var(--cor-secundaria);
    filter: brightness(0.7);
    padding: 30px 0;
}

.footer-social {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-social-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--cor-primaria) 30%, transparent);
    color: var(--cor-primaria);
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid color-mix(in srgb, var(--cor-primaria) 30%, transparent);
}

.footer-social-icon:hover {
    background: var(--cor-primaria);
    color: white;
    border-color: var(--cor-primaria);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--cor-primaria) 40%, transparent);
}

.footer-developer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-developer p {
    margin: 0;
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 600;
}

.footer-developer a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: var(--cor-primaria);
}

.footer-social-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    text-align: right;
}

.footer-social-icons-bottom {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.footer-social-icon-bottom {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: color-mix(in srgb, var(--cor-primaria) 20%, transparent);
    color: var(--cor-primaria);
    border-radius: 50%;
    text-decoration: none;
    font-size: 0.95rem;
    border: 1px solid color-mix(in srgb, var(--cor-primaria) 30%, transparent);
    transition: all 0.3s ease;
}

.footer-social-icon-bottom:hover {
    background: var(--cor-primaria);
    color: white;
    border-color: var(--cor-primaria);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px color-mix(in srgb, var(--cor-primaria) 40%, transparent);
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-copyright a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Ocultar colunas do footer em mobile */

@media (max-width: 767px) {
    .footer-hide-mobile {
        display: none !important;
    }
}

.footer-copyright a:hover {
    color: var(--cor-primaria);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    z-index: 999998;
    background: color-mix(in srgb, var(--cor-primaria) 40%, transparent);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--cor-primaria) 40%, transparent);
}

.back-to-top.show {
    display: flex;
}

.btn-back-to-top {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--cor-primaria);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 9998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

.btn-back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: color-mix(in srgb, var(--cor-primaria) 80%, transparent);
}

.btn-back-to-top.show {
    display: flex !important;
}

@media (max-width: 768px) {
    .modern-footer {
        padding-top: 20px;
        margin-top: 40px;
    }

    .footer-column {
        margin-bottom: 10px;
        text-align: center;
    }

    .footer-main .row {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-main .col-lg-3,
    .footer-main .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        text-align: center;
    }

    .footer-links {
        padding-left: 0;
        align-items: center;
    }

    .footer-links li {
        text-align: center;
    }

    .footer-links li a {
        justify-content: center;
        text-align: center;
    }

    .footer-column-title {
        text-align: center;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        text-align: center;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-column-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    h6.footer-column-title {
        text-align: center;
        display: block;
        width: 100%;
    }

    .modern-footer .col-lg-3,
    .modern-footer .col-md-6 {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .footer-bottom .col-md-6 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }

    .footer-bottom .d-flex {
        justify-content: center !important;
    }

    .footer-bottom .align-items-center {
        justify-content: center;
    }

    .footer-copyright {
        text-align: center;
        padding-top: 15px;
    }

    .footer-copyright p {
        font-size: 0.85rem;
    }

    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }

    .footer-column-title::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer-social-label {
        width: 100%;
    }

    .footer-social-icons {
        justify-content: center;
        width: 100%;
    }

    .footer-links li a {
        font-size: 0.9rem;
    }
}

/* ==========================================

MEUS DADOS - PÁGINA

Consolidado de meus-dados.php

========================================== */

.meus-dados-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.dados-header {
    background: color-mix(in srgb, var(--cor-primaria) 40%, transparent);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.dados-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dados-body {
    padding: 30px;
}


.btn-atualizar {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: color-mix(in srgb, var(--cor-primaria) 40%, transparent);
    color: white;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-atualizar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-voltar {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-voltar:hover {
    border-color: #e74a3b;
    color: #e74a3b;
}

.info-box {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #e74a3b;
}

.info-box p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.info-box strong {
    color: #333;
}

/* ==========================================

MEUS PEDIDOS - PÁGINA

Consolidado de meus-pedidos.php

========================================== */

.meus-pedidos-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pedidos-header {
    background: color-mix(in srgb, var(--cor-primaria) 40%, transparent);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.pedidos-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pedidos-body {
    padding: 30px;
}

.pedidos-grid {
    display: grid;
    gap: 20px;
}

.pedido-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.pedido-card:hover {
    border-color: #e74a3b;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pedido-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.pedido-info {
    display: flex;
    flex-direction: column;
}

.pedido-info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.pedido-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.pedido-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.pedido-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.pedido-valor {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    color: #e74a3b;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.badge-secondary {
    background: #e2e3e5;
    color: #383d41;
}

.btn-ver-detalhes {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background: #e74a3b;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ver-detalhes:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .pedido-header {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pedido-footer {
        grid-template-columns: 1fr;
    }

    .meus-dados-container,
    .meus-pedidos-container {
        margin: 20px;
    }
}

/* ==========================================

SWIPER GALERIA - PACOTES DETALHES

========================================== */

.swiper {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    width: 100%;
}

.swiper img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
}

.swiper-thumb {
    height: 80px;
}

.swiper-thumb .swiper-slide {
    opacity: 0.6;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
}

.swiper-thumb .swiper-slide-thumb-active {
    opacity: 1;
    outline: 3px solid var(--cor-primaria);
}

.swiper-thumb img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.swiper-button-prev,

.swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-prev:after,

.swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-prev:hover,

.swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.6);
}

.swiper-pagination-bullet {
    background: #fff;
    opacity: 0.6;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--cor-primaria);
}

@media (max-width: 768px) {
    .swiper {
        aspect-ratio: 4/3;
    }

    .swiper-thumb {
        height: 60px;
    }

    .swiper-thumb .swiper-slide {
        aspect-ratio: 4/3;
    }

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

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 14px;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .galeria-grid img {
        height: 120px;
    }

    .hosp-img {
        height: 180px;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .swiper {
        aspect-ratio: 3/2;
    }

    .galeria-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .galeria-grid img {
        height: 100px;
    }

    .hosp-img {
        height: 140px;
        aspect-ratio: 3/2;
    }
}

/* ==========================================

MEUS PEDIDOS (ORDERS PAGE)

========================================== */

.meus-pedidos-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.pedidos-header {
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.pedidos-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pedidos-body {
    padding: 30px;
}

.pedidos-grid {
    display: grid;
    gap: 20px;
}

.pedido-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.pedido-card:hover {
    border-color: var(--cor-primaria);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pedido-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.pedido-info {
    display: flex;
    flex-direction: column;
}

.pedido-info-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
}

.pedido-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.pedido-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    align-items: center;
}

.pedido-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.pedido-valor {
    text-align: right;
    font-size: 20px;
    font-weight: 700;
    color: var(--cor-primaria);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success {
    background: #d4edda;
    color: #155724;
}

.badge-warning {
    background: #fff3cd;
    color: #856404;
}

.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.badge-info {
    background: #d1ecf1;
    color: #0c5460;
}

.badge-secondary {
    background: #e2e3e5;
    color: #383d41;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 64px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state p {
    color: #999;
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-ver-detalhes {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    background: var(--cor-primaria);
    color: white;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-ver-detalhes:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Gradient background for meus-pedidos page */

.meus-pedidos-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

/* ==========================================

MEUS DADOS (PROFILE PAGE)

========================================== */

.meus-dados-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.dados-header {
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.dados-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dados-body {
    padding: 30px;
}

.dados-body .form-group {
    margin-bottom: 20px;
}

.dados-body .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.dados-body .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.dados-body .form-control:focus {
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.25);
    outline: none;
}

.dados-body .alert {
    border-radius: 8px;
    margin-bottom: 20px;
}

.btn-atualizar {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: white;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-atualizar:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-voltar {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-voltar:hover {
    border-color: var(--cor-primaria);
    color: var(--cor-primaria);
}

.info-box {
    background: #f5f5f5;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid var(--cor-primaria);
}

.info-box p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

.info-box strong {
    color: #333;
}

/* Gradient background for meus-dados page */

.meus-dados-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px 0;
}

/* ==========================================

RESPONSIVIDADE - MEUS PEDIDOS

========================================== */

@media (max-width: 768px) {
    .pedido-header {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pedido-footer {
        grid-template-columns: 1fr;
    }

    .pedido-valor {
        text-align: left;
    }
}

/* ==========================================

RESPONSIVIDADE ADICIONAL

========================================== */

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

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

@media (max-width: 480px) {
    .hero {
        height: 220px;
    }

    .hero h1 {
        font-size: 1.3rem;
    }

    .hero-dates {
        gap: 8px;
    }

    .badge-date {
        padding: 4px 10px;
        font-size: 0.75rem;
    }

    .page-wrapper {
        padding: 15px 10px;
    }

    .card-sec {
        padding: 14px;
        margin-bottom: 14px;
    }

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

    .invest-price {
        font-size: 1.75rem;
    }

    .parcela-main {
        font-size: 1.2rem;
    }

    .btn-reservar-detalhes {
        padding: 12px 16px;
        font-size: 0.95rem;
    }
}

/* ==========================================

NAVBAR - ÍCONES DE USUÁRIO E CARRINHO

(Consolidado de navbar-icons.css)

========================================== */

/* USER MENU DROPDOWN (Desktop) */

.navbar-user-menu {
    position: relative;
}

.navbar-user-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cor-primaria, #e74a3b);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.navbar-user-icon:hover {
    color: var(--cor-secundaria, #2e59d9);
    transform: scale(1.1);
}

.navbar-user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    padding: 12px 0;
    margin-top: 8px;
    display: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.navbar-user-dropdown.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown-header {
    padding: 12px 16px;
    border-bottom: 1px solid #e9ecef;
}

.user-name {
    display: block;
    font-weight: 600;
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.user-email {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    background: #f8f9fa;
    border-left-color: var(--cor-primaria, #e74a3b);
    padding-left: 19px;
}

.dropdown-item i {
    font-size: 1rem;
    color: var(--cor-primaria, #e74a3b);
}

.dropdown-item.text-danger {
    color: #dc3545;
}

.dropdown-item.text-danger i {
    color: #dc3545;
}

/* CART ICON WITH BADGE */

.navbar-cart-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--cor-primaria, #e74a3b);
    transition: all 0.3s ease;
    text-decoration: none;
}

.navbar-cart-icon:hover {
    color: var(--cor-secundaria, #2e59d9);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: bounce 0.5s ease-in-out;
}

@keyframes bounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* MOBILE OFFCANVAS USER & CART ICONS */

.offcanvas-user-cart {
    display: flex;
    gap: 10px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 16px;
}

.offcanvas-icon {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px;
    background: white;
    border-radius: 6px;
    color: var(--cor-primaria, #e74a3b);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.offcanvas-icon:hover {
    background: var(--cor-primaria, #e74a3b);
    color: white;
    border-color: var(--cor-primaria, #e74a3b);
}

.offcanvas-icon i {
    font-size: 1.3rem;
}

.offcanvas-icon span {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

/* HR SEPARATOR IN DROPDOWN */

.dropdown-item+hr,

.dropdown-header+hr {
    margin: 4px 0;
    border: none;
    border-top: 1px solid #e9ecef;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .navbar-user-menu,
    .navbar-cart-icon {
        display: none;
    }
}

/* TripScale Brand Hover */

.tripscale-brand {
    transition: color 0.3s ease;
    cursor: default;
}

.tripscale-brand:hover {
    color: var(--cor-primaria);
}

/* ==========================================

PROCESSING / PAYMENT PAGE

========================================== */

.processing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--cor-primaria);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.processing-message {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 10px;
}

.processing-subtext {
    color: #666;
    font-size: 0.9rem;
    max-width: 400px;
}

/* ==========================================

REVISION PAGE (CHECKOUT)

========================================== */

.order-summary {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.order-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
}

.order-item-details {
    flex: 1;
}

.order-item-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.order-item-quantity {
    color: #666;
    font-size: 0.9rem;
}

.order-item-price {
    font-weight: 700;
    color: var(--cor-secundaria);
    min-width: 100px;
    text-align: right;
}

.order-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 20px 0;
    border-top: 2px solid #eee;
    margin-top: 20px;
}

.payment-methods {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: var(--cor-primaria);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-option.selected {
    border-color: var(--cor-primaria);
    background: rgba(231, 74, 59, 0.05);
}

.payment-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.payment-option-icon.credit-card {
    background: color-mix(in srgb, var(--cor-primaria) 10%, transparent);
    color: var(--cor-primaria);
}

.payment-option-icon.pix {
    background: color-mix(in srgb, #25D366 10%, transparent);
    color: #25D366;
}

.payment-option-details {
    flex: 1;
}

.payment-option-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.payment-option-description {
    color: #666;
    font-size: 0.9rem;
}

.payment-option-badge {
    background: var(--cor-primaria);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.secure-checkout {
    padding: 20px;
    margin-bottom: 20px;
}

.secure-checkout-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.secure-checkout-header i {
    font-size: 24px;
    color: var(--cor-primaria);
}

.secure-checkout-header h5 {
    margin: 0;
    font-weight: 600;
    color: #212529;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icon-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #495057;
}

.payment-icon-item i {
    font-size: 18px;
    color: var(--cor-primaria);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #dee1e4;
    color: var(--cor-secundaria);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.payment-method-badge {
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.payment-method-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ==========================================

CHECKOUT PROGRESS STEPS

========================================== */

.progress-steps {
    margin: 0 auto 20px;
}

.steps-container {
    position: relative;
    padding: 0 10px;
}

.progress-bar-bg {
    position: absolute;
    top: 16px;
    left: 30px;
    right: 30px;
    height: 4px;
    background: #e9ecef;
    z-index: 0;
}

.progress-bar-fill {
    position: absolute;
    top: 16px;
    left: 30px;
    height: 4px;
    background: var(--cor-primaria);
    z-index: 0;
    transition: width 0.4s ease;
}

.step {
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e9ecef;
    color: #6c757d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.step-completed .step-circle {
    background: var(--cor-primaria);
    color: #fff;
}

.step-active .step-circle {
    background: var(--cor-primaria);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.2);
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 10px;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: ">";
    color: #6c757d;
}

.breadcrumb-item.completed a {
    color: var(--cor-primaria);
    text-decoration: none;
}

.breadcrumb-item.active span {
    color: var(--cor-primaria);
    font-weight: 600;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
}

/* ==========================================

MINHA CONTA PAGE

========================================== */

.conta-container {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.conta-header {
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    padding: 30px;
    color: #fff;
}

.conta-header h1 {
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.conta-header h1 i {
    margin-right: 10px;
}

.abas-container {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0 30px;
}

.abas-nav {
    display: flex;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.aba-link {
    padding: 16px 24px;
    color: #6c757d;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aba-link:hover {
    color: var(--cor-primaria);
    background: rgba(0, 0, 0, 0.03);
}

.aba-link.ativa {
    color: var(--cor-primaria);
    border-bottom-color: var(--cor-primaria);
    background: #fff;
}

.aba-conteudo {
    padding: 30px;
    display: none;
}

.aba-conteudo.ativa {
    display: block;
}

.aba-conteudo .form-group {
    margin-bottom: 20px;
}

.aba-conteudo .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.btn-atualizar {
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-atualizar:hover {
    background: var(--cor-hover);
    transform: translateY(-2px);
}

.btn-voltar {
    background: #6c757d;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 20px;
}

.btn-voltar:hover {
    background: #5a6268;
}

.aba-conteudo .info-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.aba-conteudo .empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.aba-conteudo .empty-state i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.aba-conteudo .empty-state p {
    font-size: 18px;
    margin-bottom: 20px;
}

.pedidos-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pedido-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.pedido-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.pedido-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.pedido-info {
    display: flex;
    flex-direction: column;
}

.pedido-info-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
}

.pedido-info-value {
    font-weight: 600;
    color: #212529;
}

.pedido-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
}

.pedido-status {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pedido-valor {
    font-size: 18px;
    font-weight: 700;
    color: var(--cor-primaria);
}

@media (max-width: 576px) {
    .conta-container {
        margin: 20px 10px;
    }

    .conta-header {
        padding: 20px;
    }

    .abas-nav {
        overflow-x: auto;
    }

    .aba-link {
        padding: 12px 16px;
        white-space: nowrap;
    }

    .aba-conteudo {
        padding: 20px;
    }

    .pedido-header,
    .pedido-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ==========================================

PEDIDOS PAGE

========================================== */

.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pago {
    background: #d4edda;
    color: #155724;
}

.status-pendente {
    background: #fff3cd;
    color: #856404;
}

.status-cancelado {
    background: #f8d7da;
    color: #721c24;
}

.status-processando {
    background: #d1ecf1;
    color: #0c5460;
}

.pedidos-page .pedido-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

/* ==========================================

CADASTRO PAGE

========================================== */

.cadastro-page .form-label {
    font-weight: 600;
    color: var(--cor-secundaria);
    margin-bottom: 5px;
}

.cadastro-page .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: border-color 0.3s;
}

.cadastro-page .form-control:focus {
    outline: none;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 0.2rem rgba(231, 74, 59, 0.25);
}

.cadastro-page .alert {
    border-radius: 8px;
}

.cadastro-page .card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.cadastro-page .card-header {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
}

/* ==========================================

MEUS DADOS PAGE

========================================== */

.meus-dados-page .meus-dados-container {
    max-width: 800px;
    margin: 40px auto;
}

.meus-dados-container .dados-header {
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    padding: 30px;
    border-radius: 12px 12px 0 0;
    color: #fff;
}

.meus-dados-container .dados-header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dados-body {
    background: #fff;
    padding: 30px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

/* ==========================================

CHECKOUT ERROR PAGE

========================================== */

.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #ff6b6b 0%, #dc3545 100%);
    padding: 20px;
}

.error-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.error-icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 20px;
    animation: shake 0.6s;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    75% {
        transform: translateX(10px);
    }
}

.error-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.error-message {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.error-details {
    background: #fff3cd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
}

/* ==========================================

CHECKOUT SUCCESS PAGE

========================================== */

.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    padding: 20px;
}

.success-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
    animation: scaleIn 0.6s ease-out;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.success-subtitle {
    color: #666;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* ==========================================

404 PAGE

========================================== */

.erro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, #1a1a2e 100%);
    padding: 20px;
}

.erro-box {
    background: white;
    border-radius: 16px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    text-align: center;
}

.erro-box h1 {
    font-size: 5rem;
    font-weight: 800;
    color: var(--cor-primaria);
    margin-bottom: 10px;
}

.erro-box h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.erro-box p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-home {
    display: inline-block;
    padding: 14px 32px;
    background: var(--cor-primaria);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: var(--cor-hover);
    color: white;
    transform: translateY(-2px);
}

/* ==========================================

REGISTER PAGE (OLD)

========================================== */

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ==========================================

REGISTER PAGE (OLD)

========================================== */

.bg-gradient-primary {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

    .passeio-card .img-passeio {
        height: 180px;
    }
}

/* ==========================================

SEÇÃO BENEFÍCIOS (INDEX)

========================================== */

.beneficios {
    background: color-mix(in srgb, var(--cor-primaria) 12%, white);
    padding: 100px 20px 30px;
    margin-top: -85px;
    position: relative;
    z-index: 1;
}

.beneficios-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.beneficio {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 220px;
}

.beneficio .icon {
    width: 55px;
    height: 55px;
    border: 2px solid var(--cor-primaria);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cor-primaria);
    font-size: 22px;
    flex-shrink: 0;
}

.beneficio .text h4 {
    font-size: 1.2rem;
    margin: 0;
    font-weight: 500;
    color: #333;
}

.beneficio .text p {
    font-size: 0.9rem;
    margin: 2px 0 0;
    color: #666;
    line-height: 1.35;
}

/* Botões slider */

.beneficios .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.beneficios .slider-btn.prev {
    left: 5px;
}

.beneficios .slider-btn.next {
    right: 5px;
}

/* Responsivo */

@media (max-width:768px) {
    .beneficios {
        padding: 30px 60px 30px;
        margin-top: -95px;
    }

    .beneficios-container {
        overflow-x: auto;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        display: flex;
        flex-wrap: nowrap;
        gap: 0;
        padding: 0 10px;
    }

    .beneficios-container::-webkit-scrollbar {
        display: none;
    }

    .beneficios-container {
        scrollbar-width: none;
    }

    .beneficio {
        min-width: 100%;
        scroll-snap-align: start;
        padding: 0 22px;
    }

    .beneficios .slider-btn {
        display: flex;
    }
}

@media (min-width: 769px) {
    .beneficios-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
    }

    .beneficios .slider-btn {
        display: none !important;
    }
}

/* ==========================================

PAGINA: MINHA CONTA

========================================== */

.mc-tabs-container {
    background: transparent;
    margin-bottom: 25px;
}

.mc-tabs-nav {
    display: flex;
    list-style: none;
    padding: 5px 0;
    margin: 0;
    overflow-x: auto;
    gap: 12px;
    scrollbar-width: none;
}

.mc-tabs-nav::-webkit-scrollbar {
    display: none;
}

.mc-tabs-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    border-radius: 12px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.mc-tabs-link i {
    font-size: 1.1rem;
}

.mc-tabs-link:hover {
    background: #f1f5f9;
    color: var(--cor-primaria);
}

.mc-tabs-link.active {
    background: color-mix(in srgb, var(--cor-primaria) 12%, transparent);
    color: var(--cor-primaria);
    font-weight: 700;
}

.aba-conteudo {
    display: none;
    padding: 30px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
}

.aba-conteudo.ativa {
    display: block;
}

/* Dados pessoais */

.info-box {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 600;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 3px rgba(231, 74, 59, 0.1);
}

.btn-atualizar {
    background: var(--cor-primaria);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-atualizar:hover {
    background: var(--cor-hover);
    transform: translateY(-2px);
}

.btn-voltar {
    background: transparent;
    color: #666;
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    transition: all 0.3s;
}

.btn-voltar:hover {
    background: #f8f9fa;
    color: #333;
}

/* Cupons */

.cupom-card {
    background: linear-gradient(135deg, #fff8ec 0%, #fff3e0 100%);
    border: 1px dashed #f58014;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cupom-info {
    flex: 1;
}

.cupom-codigo {
    font-weight: 700;
    color: #f58014;
    font-size: 1.1rem;
}

.cupom-validade {
    font-size: 0.8rem;
    color: #888;
}

.cupom-desconto {
    font-weight: 700;
    color: #27ae60;
    font-size: 1.2rem;
}

.cupom-vazio {
    text-align: center;
    padding: 30px;
    color: #888;
}

.cupom-vazio i {
    font-size: 2rem;
    color: #ccc;
    margin-bottom: 10px;
}

/* Cr�dito */

.credito-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border: 1px solid #4caf50;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.credito-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.credito-valor {
    font-size: 2rem;
    font-weight: 800;
    color: #2e7d32;
}

.credito-box.vazio {
    background: linear-gradient(135deg, #f5f5f5 0%, #eeeeee 100%);
    border-color: #ccc;
}

.credito-box.vazio .credito-valor {
    color: #999;
}

/* Pedidos */

.pedidos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.pedido-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.pedido-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pedido-header {
    background: #f8f9fa;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
}

.pedido-info {
    text-align: center;
}

.pedido-info-label {
    display: block;
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
}

.pedido-info-value {
    font-weight: 700;
    color: #333;
    font-size: 0.95rem;
}

.pedido-body {
    padding: 15px;
}

.pedido-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.pedido-item:last-child {
    border-bottom: none;
}

.pedido-item-titulo {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.pedido-item-meta {
    font-size: 0.85rem;
    color: #888;
}

.pedido-footer {
    padding: 15px;
    background: #fafafa;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pedido-valor {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--cor-secundaria);
}

.empty-state {
    text-align: center;
    padding: 50px 20px;
    color: #888;
}

.empty-state i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* Viagem/Acompanhamento */

.viagem-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
}

.viagem-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.viagem-destino {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--cor-secundaria);
}

.viagem-datas {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.viagem-status {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.viagem-status.pendente {
    background: #fff3cd;
    color: #856404;
}

.viagem-status.confirmado {
    background: #d4edda;
    color: #155724;
}

.viagem-status.pago {
    background: #cce5ff;
    color: #004085;
}

.viagem-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.viagem-info-item {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
}

.viagem-info-label {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.viagem-info-value {
    font-weight: 600;
    color: #333;
}

/* Novos Estilos do Ônibus (Premium) */

.bus-wrapper {
    max-width: 400px;
    margin: 0 auto;
}

.bus-legend {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #666;
}

.legend-box {
    width: 14px;
    height: 14px;
    border-radius: 3px;
}

.bus-container {
    background: #fff;
    border: 3px solid #e2e8f0;
    border-radius: 40px 40px 15px 15px;
    padding: 35px 15px 15px;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.bus-front {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 10px;
}

.bus-steering-wheel {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px dashed #e2e8f0;
    color: #94a3b8;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr) 25px repeat(2, 1fr);
    gap: 8px;
    align-items: center;
}

.seat {
    aspect-ratio: 1;
    background: #b4ffdc;
    border: 2px solid #96c9b1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.seat:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.seat.sold {
    background: var(--cor-primaria) !important;
    border-color: var(--cor-primaria) !important;
    color: #fff !important;
    cursor: not-allowed;
}

.seat.selected {
    background: #dfdfdf !important;
    border-color: #cbd5e1 !important;
    color: var(--cor-primaria) !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.aisle {
    text-align: center;
    font-size: 0.5rem;
    color: #94a3b8;
    opacity: 0.5;
    writing-mode: vertical-rl;
    pointer-events: none;
}

/* Resumo da Viagem */

.summary-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: all 0.2s ease;
}

.summary-icon {
    font-size: 1.2rem;
    margin-bottom: 2px;
}

.summary-value {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.summary-label {
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .abas-nav {
        flex-direction: column;
    }

    .abas-nav li {
        border-bottom: 1px solid #eee;
    }

    .aba-conteudo {
        padding: 20px;
    }

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

    .assento-grid {
        grid-template-columns: repeat(2, 1fr) 30px repeat(2, 1fr);
        gap: 5px;
        padding: 10px;
    }

    .assento-grid::before {
        font-size: 0.5rem;
    }

    .assento-numero {
        font-size: 0.85rem;
    }
}




/* ==========================================

   FORMS GERAIS

========================================== */
.form-wrapper {
    background: #fff;
    max-width: 850px;
    margin: 0 auto 60px;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 10;
}

.form-control::placeholder {
    color: #94a3b8;
}

.form-label {
    font-weight: 600;
    color: #334155;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e2e8f0;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 1rem;
    color: #334155;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 4px rgba(var(--cor-primaria), 0.1);
}

.alert {
    border-radius: 8px;
    margin-bottom: 20px;
}

/* ==========================================

   PÁGINA LOGIN

========================================== */


.login-split {
    display: flex;
    min-height: 100vh;
}

.login-image-side {
    display: none;
    flex: 1;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1499856871958-5b9627545d1a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    color: #fff;
    padding: 40px;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 992px) {
    .login-image-side {
        display: flex;
    }
}

.login-image-side .brand-logo img {
    max-height: 60px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.login-image-side .quote {
    max-width: 500px;
    margin-bottom: 50px;
}

.login-image-side .quote h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.login-image-side .quote p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.login-form-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 20px;
    background: #fff;
}

.login-form-wrapper {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.login-form-side .mobile-logo {
    display: block;
    text-align: center;
    margin-bottom: 30px;
}

.login-form-side .mobile-logo img {
    max-height: 50px;
}

@media (min-width: 992px) {
    .login-form-side .mobile-logo {
        display: none;
    }
}

.login-header-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.login-header-text p {
    color: #666;
    margin-bottom: 30px;
}

.btn-custom-primary {
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 100%;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: #fff;
    background: linear-gradient(135deg,
            var(--cor-hover),
            color-mix(in srgb, var(--cor-primaria) 80%, black));
}

.form-control {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1.5px solid #eaeaea;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--cor-primaria);
    box-shadow: 0 0 0 0.2rem rgba(var(--cor-primaria), 0.1);
}

.input-group .toggle-password {
    border: 1.5px solid #eaeaea;
    border-left: none;
    background: #fff;
}

.divider {
    text-align: center;
    margin: 30px 0;
    position: relative;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #eaeaea;
}

.divider span {
    background: #fff;
    padding: 0 15px;
    color: #999;
    font-size: 0.9rem;
    position: relative;
}

.btn-outline-custom {
    border: 1.5px solid #eaeaea;
    color: #666;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-custom:hover {
    background: #f8f9fa;
    border-color: #ddd;
    color: #333;
}

.back-link {
    text-align: center;
    margin-top: 20px;
}

.back-link a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.back-link a:hover {
    color: var(--cor-primaria);
}

.alert-custom {
    border-radius: 8px;
    border-left: 4px solid #dc3545;
    background: #fff5f5;
    color: #dc3545;
    padding: 15px;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* ==========================================

   PÁGINA CADASTRO

========================================== */


.header-cadastro {
    background: linear-gradient(135deg, var(--cor-secundaria) 0%, var(--cor-primaria) 100%);
    padding: 80px 20px 60px;
    text-align: center;
    color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    margin-bottom: -50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header-cadastro h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.header-cadastro p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.btn-reservar {
    background: linear-gradient(135deg,
            var(--cor-secundaria) 0%,
            color-mix(in srgb, var(--cor-secundaria) 80%, black) 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-reservar:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
    color: #fff;
}

.password-requirements {
    background: #f8fafc;
    border-radius: 12px;
    padding: 15px;
    margin-top: 10px;
}

.password-requirements div {
    font-size: 0.85rem;
    margin-bottom: 0px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.password-requirements i {
    font-size: 0.6rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.section-title i {
    color: var(--cor-primaria);
    background: rgba(var(--cor-primaria), 0.1);
    padding: 10px;
    border-radius: 10px;
}

.divider-row {
    height: 1px;
    background: #e2e8f0;
    margin: 20px 0;
}

.alert-danger {
    border-radius: 12px;
    border: none;
    background-color: #fef2f2;
    color: #dc2626;
    margin-bottom: 30px;
    padding: 20px;
}

/* ==========================================

   ALERTAS E TOASTS

========================================== */
/* ===== MODAL BASE ===== */
.travel-alert {
    border-radius: 16px;
    padding: 26px 28px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    /* efeito moderno */
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

/* ===== TÍTULO ===== */
.travel-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-align: center;
}

/* ===== CONTEÚDO ===== */
.travel-html {
    font-size: 14px;
    color: #475569;
    margin-top: 10px;
    text-align: center;
}

/* lista de erros centralizada corretamente */
.travel-html ul {
    text-align: left;
    display: inline-block;
    margin: 10px auto 0;
    padding-left: 18px;
}

/* ===== PROGRESS BAR ===== */
.swal2-timer-progress-bar {
    background: linear-gradient(90deg, var(--cor-primaria), var(--cor-secundaria));
    height: 4px;
    border-radius: 4px;
}

/* ===== LINKS ===== */
.travel-html a,
.travel-alert a {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* ===== BOTÃO MODERNO ===== */
.btn-toast-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    margin-top: 14px;
    padding: 10px 20px;

    background: linear-gradient(135deg, var(--cor-secundaria), #0ea5e9);
    color: #ffffff !important;

    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;

    box-shadow: 0 6px 18px rgba(14, 165, 233, 0.25);
    transition: all 0.25s ease;
}

.btn-toast-action:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.35);
}

.btn-toast-action i {
    font-size: 0.9rem;
}


.input-group .toggle-password {
    border: 2px solid #e2e8f0;
    border-left: none;
    background-color: #f8fafc;
    color: #94a3b8;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    padding: 0 16px;
}

.input-group .form-control:focus+.toggle-password {
    background-color: #fff;
    border-color: var(--cor-primaria);
}