/* ========== Reset básico ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais */
    --color-primary: #19692c;
    --color-primary-light: #3a8a51;
    --color-primary-dark: #12421d;

    /* Cores de destaque */
    --color-secondary: #f4a017;
    --color-secondary-light: #f9c74f;
    --color-accent: #002080;

    /* Neutras */
    --color-bg: #f9f9f9;
    --color-surface: #ffffff;
    --color-border: #e0e0e0;
    --color-shadow: rgba(0, 0, 0, 0.1);

    /* Texto */
    --color-text-high: #333333;
    --color-text-medium: #555555;
    --color-text-light: #777777;

    /* Overlay */
    --color-overlay: rgba(0, 0, 0, 0.4);

    /* Feedback */
    --color-success: #28a745;
    --color-warning: #ffc107;
    --color-danger: #dc3545;
}

body {
    font-family: 'Exo 2', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1 {
    text-transform: uppercase;
    font-size: 60px;
}

h2 {
    font-size: 40px;
    line-height: 40px;
    color: var(--color-primary-dark);
    text-align: center;
    margin-bottom: 1rem;
}

h1, h2, .btn-primary {
    font-weight: 800;
}

a {
    color: initial;
    text-decoration: auto;
}

/* ========== Container ========== */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========== Top Bar ========== */
.topbar {
    background: #f5f5f5;
    font-size: 0.9rem;
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.topbar .contact-info span {
    margin-right: 1.5rem;
}

.topbar .social-icons a {
    margin-left: 0.75rem;
}

/* ========== Header ========== */
.site-header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* remove o space-between */
    padding: 1rem 0;
}

.site-header .logo {
    margin-right: 80px !important;
}

.main-nav {
    flex: 1 1 auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
}

.main-nav li + li {
    margin-left: 1.5rem;
}

.main-nav ul li a {
    position: relative;
    text-decoration: none;
    color: #333;
}

.main-nav ul li a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--color-primary-dark);
    transition: all 0.5s ease;
    transform: translateX(-50%);
}

.main-nav ul li:hover a::after,
.main-nav ul li a.active::after {
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.cta-icons a {
    margin-left: 1rem;
    font-size: 1.2rem;
}

/* ========== Hero ========== */
.hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: var(--color-secondary);
    color: #fff;
    text-align: center;
    padding: 6rem 0;
}

.hero video {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 40%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-shadow: 1px 1px 5px #575757;
}

.hero .subtitle {
    text-transform: uppercase;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Garante que o Swiper ocupe o espaço do hero */
.hero-swiper,
.hero-swiper .swiper-slide {
    width: 100%;
    height: calc(100vh - 150px);
    position: relative;
}

/* Setas */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
}

/* Bolinhas em branco com sombra preta */
.swiper-pagination-bullet {
    background: #fff !important;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.6) !important;
    opacity: 0.7 !important;
}

.swiper-pagination-bullet-active {
    background: #fff !important;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8) !important;
    opacity: 1 !important;
}

.btn-primary {
    display: inline-flex;
    background-color: var(--color-primary);
    color: var(--color-surface);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 1rem;
    align-items: center;
    gap: 5px;
}

.btn-secondary {
    display: inline-block;
    background-color: var(--color-secondary);
    color: var(--color-surface);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    margin-top: 1rem;
}

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

.location {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== Destinos ========== */
.destinos {
    padding: 4rem 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.card {
    background: #fff;
    border: 1px solid var(--color-border, #e0e0e0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.card:hover::before {
    opacity: 1;
}

.card img {
    width: 100%;
    display: block;
    transition: transform 1s ease;
    animation: transform 1s ease;
    height: 180px;
    object-fit: cover;
}

.card:hover img {
    transform: scale(1.06);
}

.card-body {
    position: relative;
    padding: 1rem;
    z-index: 2;
    background: #fff;
    text-align: center;
}

.card-body h3 {
    margin-bottom: 0.5rem;
}

.card-meta {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    display: flex;
    gap: 2em;
    justify-content: center;
    color: #555;
}

/* ========== Newsletter ========== */
.newsletter {
    background: #f9f9f9;
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.news-image img {
    max-width: 100%;
    border-radius: 6px;
}

.news-form form {
    display: flex;
}

.news-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 4px 0 0 4px;
}

.news-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    background: var(--color-secondary-light);
    font-weight: bold;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* ========== Frota ========== */
.fleet {
    padding-top: 4rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.fleet-grid img {
    width: 100%;
    border-radius: 6px;
}

/* ===== Footer Customizado ===== */
.site-footer {
    position: relative;
    background: var(--color-primary-light) url("./assets/images/footer.png") center/cover no-repeat;
    color: var(--color-surface);
    margin-top: 4rem;
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background-color: var(--color-primary-dark);
    opacity: 0.8;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 4rem 0;
}

.footer-left {
    flex: 1 1 40%;
    min-width: 280px;
}

.footer-left .contact-info {
    display: block;
    padding: 2em 0;
}

.footer-left .contact-info p {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    line-height: 1em;
}

.footer-left .contact-info p i {
    font-size: 2rem;
}

.footer-left .contact-info p a {
    color: var(--color-surface);
    cursor: pointer;
}

.footer-menu {
    flex: 1 1 20%;
    min-width: 180px;
}

.footer-menu h4 {
    margin-bottom: 1rem;
    color: var(--color-surface);
    font-weight: 600;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu li + li {
    margin-top: 0.5rem;
}

.footer-menu a {
    color: var(--color-surface);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-right {
    flex: 1 1 35%;
    min-width: 300px;
    background: hsl(0deg 0% 100% / 80%);
    padding: 2rem;
    border-radius: 8px;
    color: var(--color-text-high);
}

.footer-right h4 {
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 2em;
}

.site-footer form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.site-footer form .form-note {
    font-size: 0.85rem;
    color: var(--color-text-medium);
    margin: 0;
}

.site-footer form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-high);
    margin-bottom: 0.25rem;
}

.site-footer form input,
.site-footer form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    background: var(--color-surface);
    color: var(--color-text-high);
    box-sizing: border-box;
}

.site-footer form textarea {
    height: 100px;
    resize: vertical;
}

.site-footer form input[type="submit"] {
    align-self: flex-end;
    padding: 0.75rem 1.5rem;
    background-color: var(--color-secondary);
    color: var(--color-surface);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.site-footer form input[type="submit"]:hover {
    background-color: var(--color-secondary-light);
}

.footer-bottom {
    background: #111;
    text-align: center;
    padding: 1rem 0;
    font-size: 0.8rem;
    color: var(--color-surface);
}

.footer-bottom a {
    color: var(--color-surface);
    text-decoration: underline;
}

.faq-section {
    padding-top: 4rem;
    background: #fff;
}

.faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.faq-item.active .faq-question {
    background: linear-gradient(90deg, #003b18, #0f8545);
    color: #fff;
}

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

.faq-question {
    background: #f9f9f9;
    padding: 1rem 1.25rem;
    width: 100%;
    border: none;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    color: #002;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s;
}

.faq-question i {
    margin-left: 0.75rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    transition: .4s ease;
    animation: .4s ease;
    font-size: 0.95rem;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1rem 1.25rem;
    transition: 0s;
}

/* Hero banner */
.hero-banner {
    position: relative;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: var(--color-secondary);
}

.hero-banner figure {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 50%;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    width: 100%;
    height: 100%;
}

.hero-banner figure::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    z-index: 2;
    position: relative;
}

/* Seções internas */
.section {
    padding-top: 4rem;
}

.section p {
    text-align: justify;
    margin-bottom: 30px;
}

.section ul {
    margin-left: 17px;
    margin-bottom: 30px;
}

.empresa-intro {
    margin-bottom: 3rem;
}

.grid-md {
    display: grid;
    gap: 1rem;
}

.grid-md h3 {
    color: #003b18;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.grid-md ul {
    padding-left: 1rem;
    list-style: disc;
}

.video-container {
    position: relative;
    padding-top: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
}

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

span#float-wp a {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--color-success);
    color: #fff;
    text-align: center;
    line-height: 60px;
    font-size: 24px;
    border-radius: 100%;
    z-index: 99;
}

.custom-package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.custom-package-image,
.custom-package-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.custom-package-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    height: 100%;
}

.custom-package-form {
    background: #f7f7f7;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-package-form h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 0.5rem;
    text-align: center;
}

.custom-package-form p {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #666;
}

/* Alinha o label acima do input e garante largura total */
.custom-package-form label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: #333;
    width: 100%;
    display: block;
}

.custom-package-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.custom-package-form .form-row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.custom-package-form input[type="text"],
.custom-package-form input[type="email"],
.custom-package-form input[type="tel"],
.custom-package-form input[type="number"] {
    flex: 1 1 0;
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    width: 100%;
    box-sizing: border-box;
    display: block;
}

.custom-package-form button {
    padding: 1rem;
    background-color: #ffab00;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-package-form button:hover {
    background-color: #e09500;
}

.frota-section {
    padding-top: 4rem;
    background: #fff;
}

.frota-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

/* Card base */
.frota-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid transparent;
}

.frota-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.frota-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.frota-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.frota-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111;
}

.frota-numero {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--color-primary);
}

.frota-rating {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.frota-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.frota-info ul li {
    margin-bottom: 0.5rem;
    color: #333;
}

.frota-botao {
    margin-top: auto;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
    padding: 0.75rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.frota-botao:hover {
    background: #005c2d;
}

/* ===== Pacote Info ===== */
.pacote-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pacote-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

/* ===== Galeria de Imagens ===== */
.imagem-galeria {
    width: 100%;
    max-height: 50vh;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 20px;
}

.imagem-galeria img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slow-zoom 50s linear infinite;
    transition: slow-zoom 50s linear;
    transform-origin: center center;
}

@keyframes slow-zoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* ===== Vídeos ===== */
.video-gallery video {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* ===== Preço ===== */
.pacote-info h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.pacote-info p strong {
    font-size: 1.5rem;
    color: #19692c;
}

/* ===== Layout de 2 colunas ===== */
.content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 50px 0;
}

.pacote-resumo {
    width: 70%;
}

.pacote-resumo h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: left;
}

.detalhes-pacote {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detalhes-item {
    flex: 1;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: .5s;
    transition: .5s;
}

.detalhes-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.detalhes-item i {
    font-size: 2rem;
    color: #19692c;
    margin-bottom: 10px;
}

.detalhes-item h4 {
    font-size: 1.1rem;
    font-weight: bold;
}

.detalhes-item p {
    font-size: 1rem;
    color: #666;
    text-align: center;
    margin-bottom: 0;
}

.pacote-detalhes {
    width: 30%;
    background-color: var(--color-surface);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px var(--color-shadow);
    align-self: flex-start;
    position: sticky;
    top: 50px;
}

.pacote-detalhes .detalhes-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pacote-detalhes .detalhes-box p,
.pacote-detalhes .detalhes-box p * {
    font-size: 1.2rem;
    color: #19692c;
    margin-bottom: 20px;
}


.pacote-detalhes .detalhes-box .btn {
    display: block;
    margin: 0 auto;
    padding: 1rem;
    background-color: #ffab00;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: center;
}

.pacote-detalhes .detalhes-box .btn:hover {
    background-color: #e09500;
}

.single-pacote .destinos {
    padding: 0;
}

.gallery {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gallery a img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.gallery a:hover img {
    transform: scale(1.05);
}

/* ===== Estilos para formulário de filtro de pacotes ===== */
.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-end;
}

.filter-form input[type="text"],
.filter-form input[type="date"] {
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 1rem;
    flex: 1 1 auto;
    min-width: 140px;
    background: var(--color-surface);
    color: var(--color-text-high);
}

.filter-form button {
    padding: 0.7rem 1.5rem;
    background-color: var(--color-primary);
    color: var(--color-surface);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.filter-form button:hover {
    background-color: var(--color-primary-dark);
}

/* Alinha label acima do input no formulário de filtro */
.filter-form .filter-group {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-width: 140px;
}

.filter-form .filter-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
    color: var(--color-text-medium);
}

.menu-toggle {
    display: none;
}

.main-nav .logo, .main-nav .topbar {
    display: none;
}
