/* ===================================
   1. VARIÁVEIS GLOBAIS (Root)
   =================================== */
:root {
    --primary-color: #ff7300;
    --primary-hover: #e66700;
    --secondary-color: #64748b;
    --accent-color: #0ea5e9;
    --success-color: #10b981;
    --danger-color: #dc3545;
    --warning-color: #ffbf00;
    --bg-light: #f8fafc;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --btn-pulse-color: #008A34;
    --btn-pulse-hover: #80ff00;
    --video-color: #0f172a;
}

/*/--primary-color: rgb(255, 115, 0);        /* #ff7300 */
/*/--primary-hover: rgb(230, 103, 0);        /* #e66700 */

/*/--secondary-color: rgb(100, 116, 139);    /* #64748b */
/*/--accent-color: rgb(14, 165, 233);        /* #0ea5e9 */

/*/--success-color: rgb(16, 185, 129);       /* #10b981 */
/*/--danger-color: rgb(220, 53, 69);         /* #dc3545 */
/*/--warning-color: rgb(255, 191, 0);        /* #ffbf00 */

/*/--bg-light: rgb(248, 250, 252);            /* #f8fafc */

/*/--btn-pulse-color: rgb(0, 138, 52);        /* #008A34 */
/*/--btn-pulse-hover: rgb(128, 255, 0);       /* #80ff00 */

/*/--video-color: rgb(15, 23, 42);            /* #0f172a */

/* ===================================
   2. ESTILOS BASE (Body e Tipografia)
   =================================== */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: #1e293b;
    line-height: 1.6;
    height: 100%;
}

/* ===================================
   3. NAVBAR
   =================================== */
.navbar {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.2rem 0;
}

.navbar-brand img {
    height: 70px;
    transition: var(--transition);
}

.nav-link {
    font-weight: 600;
    color: var(--secondary-color) !important;
    padding: 0.5rem 1.2rem !important;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* ===================================
   4. BOTÕES GERAIS
   =================================== */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 115, 0, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Botão Pulsante (WhatsApp/Reserve) */
.btn-pulsante {
    background: var(--btn-pulse-color);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 16px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    animation: pulsar 1s infinite;
    box-shadow: 0 5px 15px rgba(128, 255, 0, 0.4);
}

@keyframes pulsar {

    0%,
    50%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(128, 255, 0, 0.4);
    }

    25%,
    75% {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(128, 255, 0, 0.5);
    }
}

.btn-pulsante:hover {
    background: var(--btn-pulse-hover);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(128, 255, 0, 0.6);
    color: var(--btn-pulse-color);
}

.btn-reserve {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    display: block;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.btn-reserve:hover {
    background: var(--primary-hover);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 115, 0, 0.3);
}

/* ===================================
   5. PÁGINA DE LOGIN
   =================================== */
.login-container {
    width: 100%;
    max-width: 540px;
    padding: 20px;
}

.login-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: var(--card-shadow);
    border: none;
    text-align: center;
}

.login-logo {
    height: 40px;
    margin-bottom: 30px;
}

/* ===================================
   EXIBIR / OCULTAR SENHA
=================================== */
.password-group .toggle-password {
    border: 1px solid #e2e8f0;
    border-left: none;
    background: transparent;
    border-radius: 0 15px 15px 0;
    color: #64748b;
    padding: 0 18px;
}

.password-group .toggle-password:hover {
    background-color: #f1f5f9;
    color: var(--primary-color);
}

.password-group:focus-within .toggle-password {
    border-color: var(--primary-color);
    color: var(--primary-color);
}



/* ===================================
   CHECKBOX CUSTOMIZADO (THEME AWARE)
=================================== */

/* Estado marcado (check visível) */
.form-check-input:checked[type="checkbox"] {
    --bs-form-check-bg-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

/* Checkbox marcado */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Checkbox padrão */
.form-check-input[type="checkbox"] {
    border-radius: 0.35em;
}

/* Alinhamento Bootstrap padrão */
.form-check .form-check-input {
    float: left;
    margin-left: -1.5em;
}

/* Base do input */
.form-check-input {
    --bs-form-check-bg: var(--bg-light);
    flex-shrink: 0;
    width: 1.05em;
    height: 1.05em;
    margin-top: 0.25em;
    vertical-align: top;

    appearance: none;
    background-color: var(--bs-form-check-bg);
    background-image: var(--bs-form-check-bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 75%;

    border: 1.5px solid var(--secondary-color);
    transition: var(--transition);

    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

/* Hover */
.form-check-input:hover {
    border-color: var(--primary-hover);
    cursor: pointer;
}

/* Focus acessível */
.form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 115, 0, 0.25);
}

/* Disabled */
.form-check-input:disabled {
    background-color: #e5e7eb;
    border-color: #cbd5f5;
    cursor: not-allowed;
    opacity: 0.6;
}



.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #64748b;
    text-align: left;
    display: block;
    margin-bottom: 8px;
}

.form-control {
    border-radius: 15px;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    background-color: #f8fafc;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 115, 0, 0.1);
    background-color: white;
}

.btn-login {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    width: 100%;
    margin-top: 20px;
    transition: var(--transition);
    font-size: 1.1rem;
}

.btn-login:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 115, 0, 0.2);
}

.forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
}

.forgot-password:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

.back-to-site {
    margin-top: 30px;
    display: inline-block;
    color: #64748b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.back-to-site:hover {
    color: var(--primary-color);
}

/* Input com ícone */
.input-group-text {
    background: transparent;
    border: 1px solid #e2e8f0;
    border-right: none;
    border-radius: 15px 0 0 15px;
    color: #64748b;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 15px 15px 0;
}

.input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ===================================
   6. HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    padding: 120px 0;
    /* background-image: url('../img/pacotes/slider2.jpg'); */
    /* REMOVIDO - agora está inline no HTML */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 115, 0, 0.85) 0%, rgba(255, 115, 0, 0.65) 100%);
    z-index: 0;
    pointer-events: none;
    /* bom hábito */
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Garantia extra para mobile */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        /* evita problemas em mobile */
        padding: 80px 0;
    }
}

/* ===================================
   COMPARTILHAMENTO
   =================================== */

.share-section {
    background: #f8f9fa;
    border: 1px solid #eee;
}

.btn-share {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-share:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.btn-telegram {
    background-color: #0088cc;
    color: white;
}

.btn-copy {
    background-color: #fd7e14;
    color: white;
}

/* Ajustes responsivos extras */
@media (max-width: 767px) {
    .btn-share {
        width: 50px;
        height: 50px;
    }

    .btn-share i {
        font-size: 1.4rem !important;
    }

    p.fs-6 {
        font-size: 1rem !important;
    }
}

/* ===================================
   GALERIA COM SETAS DE NAVEGAÇÃO
   =================================== */
.thumbnails-container {
    position: relative;
}

.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: #0f172a;
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

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

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

.thumbnails-carousel {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.thumbnails-carousel::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.thumbnail-item {
    width: 120px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
    opacity: 0.7;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    opacity: 1;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 115, 0, 0.2);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Mobile */
@media (max-width: 768px) {
    .main-gallery-image {
        height: 300px;
    }

    .thumbnail-item {
        width: 100px;
        height: 70px;
    }

    .carousel-prev {
        left: 10px;
    }

    .carousel-next {
        right: 10px;
    }

    .carousel-prev,
    .carousel-next {
        width: 36px;
        height: 36px;
    }
}

.badge-package {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.75rem;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    display: inline-block;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(5px);
}

/* ===================================
   7. CARDS E SEÇÕES GERAIS
   =================================== */
.section-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.section-title {
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-title i {
    color: var(--primary-color);
    background: rgba(255, 115, 0, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
}

.text-primary-var {
    color: var(--primary-color) !important;
}

/* Variações de cores dos cards */
.section-card.bg-verde-claro {
    background: #f1fbf4;
    border: 1px solid rgba(40, 167, 69, 0.25);
}

.section-card.bg-verde-claro .section-title,
.section-card.bg-verde-claro i {
    color: #28a745;
}

.section-card.bg-vermelho-claro {
    background: #fff1f1;
    border: 1px solid rgba(220, 53, 69, 0.25);
}

.section-card.bg-vermelho-claro .section-title,
.section-card.bg-vermelho-claro i {
    color: #dc3545;
}

.section-card.info-card {
    background: #fff8e1;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.section-card.info-card .section-title,
.section-card.info-card.info-card i {
    color: var(--warning-color);
}

/* Card de Observações */
.section-card.obs-card {
    background: #f0f4ff;
    /* azul claro */
    border: 1px solid rgba(13, 110, 253, 0.25);
}

.section-card.obs-card .section-title,
.section-card.obs-card .section-title i {
    color: #0d6efd;
    /* azul Bootstrap */
}

.section-card.obs-card .section-title i {
    background: rgba(13, 110, 253, 0.1);
}


/* ===================================
   8. INFO SECTION CARD (Com imagem + cards internos)
   =================================== */
.info-section-card {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--card-shadow);
}

.info-section-card .info-image {
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    border-radius: 24px;
}

.info-section-card .info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-section-card .info-image:hover img {
    transform: scale(1.05);
}

.info-section-card .info-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    border-radius: 15px;
}

.info-section-card .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-section-card .icon-card {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* ===================================
   9. GALERIA DE IMAGENS
   =================================== */
.galeria-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.galeria-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.galeria-item:hover img {
    transform: scale(1.1);
}

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.galeria-item:hover .galeria-overlay {
    opacity: 1;
}

/* ===================================
   10. FORMAS DE PAGAMENTO
   =================================== */
.payment-methods {
    margin-bottom: 1.5rem;
}

.payment-title {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.75;
    margin-bottom: 12px;
}

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

.payment-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    line-height: 1.4;
}

.payment-list i {
    color: var(--success-color);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.payment-text {
    display: flex;
    flex-direction: column;
}

.payment-text strong {
    color: #f8fafc;
}

.payment-text span {
    color: rgba(255, 255, 255, 0.7);
}

.btn-payment {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    border-radius: 12px;
    display: block;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-payment:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(140, 143, 209, 0.199);
}

/* ===================================
   11. PRICE BOX (Sidebar de preço)
   =================================== */
.price-box {
    background: #0f172a;
    color: white;
    padding: 40px;
    border-radius: 30px;
    position: sticky;
    top: 120px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.price-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 15px 0;
    color: white;
}

/* ===================================
   12. FAQ / ACCORDION CUSTOM
   =================================== */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion .accordion-item {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
    background: transparent;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 18px 20px;
    color: #0f172a;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(255, 115, 0, 0.08);
    color: var(--primary-color);
}

.faq-accordion .accordion-button::after {
    background-size: 16px;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.faq-accordion .accordion-body {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    padding: 0 20px 20px;
}

.faq-accordion .accordion-button:hover {
    background: rgba(255, 115, 0, 0.05);
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

/* ===================================
   13. SEÇÃO DE VÍDEO
   =================================== */
.section-card.video-card {
    background: var(--video-color);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-card.video-card .section-title,
.section-card.video-card i {
    color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    /* 16:9 */
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

/* ===================================
   14. CARDS DE PASSEIOS
   =================================== */
.passeio-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: var(--card-shadow);
    height: 100%;
    transition: var(--transition);
}

.passeio-card:hover {
    transform: translateY(-10px);
}

.passeio-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.passeio-image .badge-status {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.passeio-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.85rem;
    color: #6c757d;
}

.passeio-meta span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.badge-status {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 100px;
}

.badge-incluso {
    background: #8bff00;
    color: #166534;
}

.badge-opcional {
    background: #ff9800;
    color: #fff1f1;
}

/* ===================================
   15. FOOTER
   =================================== */
.footer-logo {
    height: 60px;
    margin-bottom: 1.5rem;
}

/* ===================================
   16. RESPONSIVIDADE
   =================================== */
@media (max-width: 991px) {
    .hero-section {
        padding: 80px 0;
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .price-box {
        position: static;
        margin-top: 30px;
    }

    .info-section-card .info-image {
        min-height: 250px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .section-card.video-card {
        padding: 25px;
    }

    .faq-accordion .accordion-button {
        font-size: 0.9rem;
        padding: 16px;
    }

    .faq-accordion .accordion-body {
        font-size: 0.85rem;
        padding: 0 16px 16px;
    }
}

/* ===================================
   17. CARDS DE PREÇO (Otimizado para mobile 375px)
   =================================== */
.price-card {
    background: #0f172a;
    color: white;
    border-radius: 24px;
    padding: 30px 20px;
    /* Reduzido padding lateral em mobile */
    text-align: center;
    border: 3px solid var(--primary-color);
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
    /* Altura mínima para consistência */
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.3);
}

.price-card-highlight {
    border-color: var(--primary-color);
    border-width: 4px;
}

.price-header {
    background: var(--primary-color);
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 20px;
    border-radius: 50px;
    margin: -50px auto 30px auto;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.price-main {
    margin: 20px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.price-currency {
    font-size: 1.3rem;
    font-weight: 700;
    align-self: flex-start;
    margin-top: 15px;
    opacity: 0.9;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.price-decimal {
    font-size: 2rem;
    font-weight: 900;
    align-self: flex-start;
    margin-top: 15px;
    opacity: 0.9;
}

.price-per {
    width: 100%;
    font-size: 1rem;
    margin-top: 12px;
    opacity: 0.9;
}

.price-total {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 20px 0;
    line-height: 1.6;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.price-note {
    font-size: 0.82rem;
    opacity: 0.8;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    line-height: 1.5;
}

/* ===================================
   RESPONSIVIDADE
   =================================== */

/* Mobile pequeno (375px - iPhone SE/6/7/8/XS) */
@media (max-width: 480px) {
    .price-card {
        padding: 25px 15px;
        min-height: 360px;
    }

    .price-header {
        margin: -45px auto 25px auto;
        font-size: 0.95rem;
        padding: 10px 16px;
    }

    .price-main {
        margin: 15px 0;
        gap: 4px;
    }

    .price-currency {
        font-size: 1rem;
        margin-top: 10px;
    }

    .price-value {
        font-size: 3rem;
    }

    .price-decimal {
        font-size: 1rem;
        margin-top: 18px;
    }

    .price-per {
        font-size: 0.95rem;
        margin-top: 10px;
    }

    .price-total {
        font-size: 0.85rem;
        margin: 18px 0;
        line-height: 1.5;
    }

    .price-note {
        font-size: 0.78rem;
        padding-top: 15px;
    }
}

/* Tablets e mobile maior (até 768px) */
@media (max-width: 768px) and (min-width: 481px) {
    .price-header {
        margin: -45px auto 25px auto;
        font-size: 1rem;
        padding: 11px 18px;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .price-currency {
        font-size: 1.4rem;
    }

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

/* Desktop pequeno (769px a 991px) */
@media (min-width: 769px) and (max-width: 991px) {
    .price-value {
        font-size: 3.6rem;
    }

    .price-total {
        font-size: 0.88rem;
    }
}

/* Desktop grande (992px+) - quebra controlada no total */
@media (min-width: 992px) {
    .price-total {
        font-size: 0.92rem;
    }

    /* Se quiser quebra após o total do pacote no desktop: */
    .price-total br.desktop-break {
        display: block;
    }
}

/* ===================================
   Informações do Pacote - Estilo como na imagem
   =================================== */
.informacoes-card-pacote {
    background: #f8f9fa;
    /* fundo clarinho como na imagem */
    border-radius: 20px;
    padding: 40px 20px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.informacoes-card-pacote:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 115, 0, 0.15);
    background: white;
}

.informacoes-card-pacote i {
    font-size: 4rem;
    /* ícones grandes e laranja */
    margin-bottom: 1.5rem;
}

.informacoes-card-pacote h5 {
    font-size: 1rem;
    color: #0f172a;
    margin-bottom: 1rem;
}

.informacoes-card-pacote p {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 300px;
}


/* ===================================
   Drop-zone Galeria de Imagem Arraste e solte
   =================================== */
.drop-zone.dragover {
    border-color: #0d6efd;
    background: rgba(13, 110, 253, 0.05);
}

/* Área de preview das imagens */
.preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

/* Cada imagem */
.preview-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1;
    border: 1px solid #ddd;
    background: #f8f9fa;
}

/* Imagem ajustada */
.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Botão remover (opcional para futuro) */
.preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===================================
   BREADCRUMB CUSTOMIZADO
   =================================== */
.breadcrumb {
    --bs-breadcrumb-divider: "›";
    background-color: transparent;
    padding: 0.75rem 0;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    border-radius: 0;
}

.breadcrumb-item {
    color: var(--secondary-color);
}

.breadcrumb-item a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Item ativo */
.breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Ícone da casa (home) */
.breadcrumb-item:first-child a {
    font-size: 1.1rem;
    padding: 0.25rem 0.5rem;
    border-radius: 8px;
    transition: var(--transition);
}

.breadcrumb-item:first-child a:hover {
    background: rgba(255, 115, 0, 0.08);
    color: var(--primary-color);
}

/* Separador customizado (opcional - se quiser mudar o visual do ›) */
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary-color);
    opacity: 0.7;
    font-weight: 400;
    margin: 0 0.5rem;
}

/* Versão com fundo (quando quiser destacar mais o breadcrumb) */
.breadcrumb-with-bg {
    background: white;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 2rem;
}

/* Responsividade */
@media (max-width: 576px) {
    .breadcrumb {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }

    .breadcrumb-item:first-child a {
        font-size: 1rem;
    }

    .breadcrumb-item+.breadcrumb-item::before {
        margin: 0 0.4rem;
    }
}