:root {
    --primary-color: #FFBD59;
    --secondary-color: #F4C27B;
    --dark-color: #000102;
    --light-color: #FFFFFF;
}

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

body {
    background-color: var(--light-color);
    color: var(--dark-color);
}

/* Header */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.logo-1 {
    color: var(--primary-color);
}

.logo-2 {
    color: var(--dark-color);
    margin: 0 5px;
}

.logo-3 {
    color: var(--secondary-color);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: bold;
    font-size: 1rem;
    padding: 8px 15px;
    transition: color 0.3s, background-color 0.3s;
}

nav a.active, nav a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 5px;
}

/* Menu Options */
.menu {
    display: flex;
    gap: 20px;
    font-weight: bold;
    font-size: 1rem;
    color: var(--dark-color);
    cursor: pointer;
}

.menu span:hover {
    color: var(--primary-color);
}

/* Banners */
.main-banner-home {
    background-image: url('img/home.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-banner-air {
    background-image: url('img/voos.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .main-banner-air {
        background-image: url('img/voos-mobile.jpg') !important;
        height: 400px;
        background-size: cover;
        background-position: center top;
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .main-banner-air h1,
    .main-banner-air p {
        color: white;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
        margin: 0;
    }
}



.main-banner-bus {
    background-image: url('img/bus.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .main-banner-bus {
        background-image: url('img/bus-mobile.jpg') !important;
        height: 700px;
        background-size: cover;
        background-position: center top;
        padding: 10px;
        flex-direction: column;
        text-align: center;
    }

    .main-banner-bus h1,
    .main-banner-bus p {
        color: white;
        text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
        margin: 0;
    }
}

.main-banner h2 {
    color: var(--light-color);
    font-size: 2rem;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 10px;
}

/* Estilos para a seção de busca */
.search-form {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 1200px; /* Limita a largura máxima */
    margin: 20px auto; /* Adiciona margem superior e inferior */
    width: 100%; /* Garante que ocupe toda a largura disponível */
}

/* Formulário dentro da seção */
.search-form form {
    display: flex;
    gap: 15px; /* Espaçamento entre os itens */
    align-items: center; /* Alinha os itens verticalmente ao centro */
    width: 100%;
    flex-direction: row; /* Alinha os itens em linha */
}

/* Ajuste para os campos de select */
.search-form select {
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    flex: 1;
    font-size: 1rem;
}

/* Estilos para o botão de busca */
.search-form button {
    padding: 12px 20px;
    background-color: #ffa500;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    flex: none;
    font-size: 1rem;
}

.search-form button:hover {
    background-color: #ff8c00; /* Cor ao passar o mouse */
}

/* Cards */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card button, .card a {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    color: var(--dark-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.card button:hover, .card a:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* About Section */
/* Card da História */
.historia-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    width: 100%;
}


/* Flexbox para imagem à esquerda e texto à direita */
.card-content {
    display: flex;
    flex-direction: row; /* Imagem à esquerda e texto à direita */
    gap: 20px;
    margin-bottom: 20px;
}

.card-content .about-image {
    flex: 1;
}

.card-content .about-text {
    flex: 2;
}

.card-content .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


  
  .card-content p {
    font-size: 1rem;
    color: var(--dark-color);
    line-height: 1.5;
  }

  
.about-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-card {
    display: flex;
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: row;
    align-items: stretch; /* Garante que os itens tenham o mesmo tamanho vertical */
    max-height: 300px; /* Limita a altura máxima do card */
}

.about-image {
    flex: 1; /* Faz com que o container da imagem ocupe o espaço proporcional */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    max-width: 300px; /* Limita a largura máxima do container de imagem */
}

.about-image img {
    width: 100%;
    height: auto; /* Mantém a proporção da imagem */
    object-fit: cover; /* Mantém o aspecto correto da imagem */
}

.about-text {
    flex: 2; /* Controla o tamanho do texto para ocupar mais espaço */
    padding: 20px;
    overflow: hidden; /* Evita que o texto saia do container */
}


/* Alteração no card para intercalar a imagem */
.about-card:nth-child(odd) .about-image {
    order: 1;
}

.about-card:nth-child(even) .about-image {
    order: -1;
}

.about-text {
    padding: 20px;
    flex: 1;
}

.about-text h2 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1rem;
    color: var(--dark-color);
}

/* Contact Section */
.contact-section {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    flex: 1;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-card h2 {
    font-size: 1.6rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 1rem;
    color: var(--dark-color);
}



.certifications-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; /* Permite que os itens "quebrem" para a próxima linha */
    justify-content: center; /* Centraliza os itens */
    gap: 20px; /* Espaçamento entre os itens */
}

.certifications-list li {
    text-align: center;
    max-width: 150px; /* Define um tamanho máximo para cada item */
    flex: 1 1 150px; /* Faz com que os itens se ajustem dinamicamente */
}

.certifications-list img {
    width: 100%; /* Ajusta a largura da imagem ao tamanho do item */
    max-width: 350px; /* Limita a largura máxima da imagem */
    height: auto; /* Mantém a proporção da imagem */
    margin-bottom: 10px; /* Espaçamento inferior */
}

.certifications-list p {
    font-size: 14px;
    color: #333;
    margin: 0;
}

.cards-container-img-certificado {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card-img-certificado {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.certifications-section {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 20px 0;
}

.certifications-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* .cards-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
} */

.card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    width: 250px; /* largura fixa */
}

.card img {
    width: 100%;
    height: 150px; /* altura fixa */
    object-fit: cover; /* imagem ajustada com corte proporcional */
    margin-bottom: 10px;
}

.card h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.card a {
    display: inline-block;
    background-color: #ffa500;
    color: #333;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.card a:hover {
    background-color: #ff8c00;
}




/* Alterações no formulário de contato */
.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card label {
    font-size: 1rem;
    color: var(--dark-color);
}

.contact-card input, .contact-card textarea {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    width: 100%;
}

.contact-card button {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    color: var(--dark-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.contact-card button:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* Seção "Como Funciona" */
.how-it-works-section {
    margin: 40px auto;
    padding: 20px;
    max-width: 1200px;
}

.how-it-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.how-it-card .card-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.how-it-card .about-image {
    width: 40%;
    margin-right: 20px;
}

.how-it-card .about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.how-it-card .about-text {
    width: 60%;
}

.how-it-card .about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.how-it-card .about-text p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Ajustes para dispositivos móveis */
@media (max-width: 768px) {
    .how-it-card .card-content {
        flex-direction: column;
        align-items: center;
    }

    .how-it-card .about-image {
        width: 80%;
        margin-right: 0;
    }

    .how-it-card .about-text {
        width: 100%;
        text-align: center;
    }
}

/* Estilos para a FAQ dentro da Seção Como Funciona */
.faq-section {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

/* Estilos dos itens de FAQ */
.faq-item {
    margin-bottom: 15px;
}

/* Estilo para as perguntas */
.faq-question {
    background-color: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    padding: 15px;
    text-align: left;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--secondary-color);
}

/* Estilo para as respostas */
.faq-answer {
    background-color: #f9f9f9;
    padding: 10px;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    display: none; /* Respostas ficam ocultas inicialmente */
    margin-top: 10px;
}

.faq-answer p {
    margin: 0;
}

.canva-embed embed {
    display: block;
    margin: 0 auto;
    border: none;
    height: 800px; /* Ajuste conforme necessário */
}


/* Estilos responsivos */
@media (max-width: 768px) {
    .faq-question {
        font-size: 1rem;
        padding: 12px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }
}

/* termo.css */

/* Variáveis de cor (opcional) */
:root {
    --termo-bg-color: #F9C179;  /* laranja clarinho */
    --termo-card-bg: #fff;      /* fundo dos cards (branco) */
    --termo-text-color: #333;   /* cor principal do texto */
}

/* Seção principal do termo */
.termo-section {
    background-color: var(--termo-bg-color);
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;  /* centraliza horizontalmente se tiver max-width */
    max-width: 1200px;  /* limite de largura se desejar */
}

/* Cada card dentro da seção */
.termo-card {
    background-color: var(--termo-card-bg);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Conteúdo textual dentro de cada card */
.termo-text {
    color: var(--termo-text-color);
    text-align: left;  /* garante alinhamento à esquerda */
}

/* Título principal de cada seção */
.termo-title {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #444; /* cor diferente se quiser */
}

/* Parágrafos */
.termo-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem; /* espaçamento entre parágrafos */
}

/* Subtítulos (4.1, 4.2...) */
.termo-text h3 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #555;
}

/* Listas */
.termo-text ul {
    list-style-type: disc;        /* bolinha padrão */
    list-style-position: outside; /* a bolinha fica fora do texto */
    margin-left: 2rem;           /* recuo para os bullets */
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 0;             /* remove padding extra */
}

.termo-text li {
    margin-bottom: 0.5rem;
}

/* Links */
.termo-text a {
    color: #0066cc; /* cor do link */
    text-decoration: none;
}

.termo-text a:hover {
    text-decoration: underline; /* hover para link */
}

/* Rodapé */
footer {
    text-align: center;
    padding: 10px;
    color: #333;
    font-size: 0.9rem;
}

/* Responsividade básica */
@media (max-width: 768px) {
    .termo-section {
        margin: 10px;
        padding: 10px;
    }
    .termo-card {
        padding: 15px;
        margin-bottom: 20px;
    }
    .termo-title {
        font-size: 1.5rem;
    }
    .termo-text p {
        font-size: 0.95rem;
    }
}

/* fundo_pet.css */

/* Configurações gerais e background */
.fundopet-background {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFBD59;
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
}

.fundopet-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Estilo dos cards */
.fundopet-card {
    position: relative;
    width: 100%;
    /* Se preferir altura automática, troque para min-height: auto; */
    height: 500px; 
    padding: 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    /* Removemos display: flex; para não centralizar o texto no meio horizontal */
    color: #000;         /* texto preto */
    text-align: left;    /* alinhado à esquerda */
}

/* Título sobreposto no card */
.fundopet-title {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 26px;
    font-weight: bold;
    background: transparent; /* sem fundo */
    color: #000;            /* título em preto */
    padding: 10px 15px;
    border-radius: 5px;
}

/* Caixa de texto informativa */
.fundopet-text {
    position: absolute;
    /* Removemos bottom e passamos a usar top + transform para centralizar verticalmente */
    top: 50%;
    left: 2%;
    transform: translateY(-50%); /* move o texto para o meio vertical do card */
    font-size: 18px;
    background: transparent; /* sem fundo preto */
    color: #000;             /* texto em preto */
    padding: 10px 15px;
    border-radius: 5px;
    width: 65%;
    text-align: left;        /* alinhado à esquerda */
}

/* Estilização de listas dentro da caixa de texto */
.fundopet-text ul {
    margin: 10px 0 0 20px;
    padding: 0;
    list-style-type: disc;
}
.fundopet-text li {
    margin-bottom: 5px;
}

.roteiro-container {
    font-family: Arial, sans-serif;
    margin: 10px 0;
    color: #333;
    background-color: #fefefe;
  }
  
  .roteiro-titulo {
    color: #b66b00;
  }
  
  .roteiro-dia {
    margin-bottom: 30px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 12px;
    background-color: #fffdf5;
  }
  
  .roteiro-dia-titulo {
    color: #b66b00;
  }
  
  .roteiro-paradas {
    margin-left: 20px;
  }
  
  .roteiro-paradas a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .roteiro-paradas a:hover {
    text-decoration: underline;
  }




/* Estilos específicos para a classe air */
.air {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .air .flight-card {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: var(--light-color);
  }
  
  .air .flight-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .air .badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--light-color);
  }
  
  .air .badge.recommended {
    background-color: #ffa500; /* cor de exemplo */
  }
  
  .air .badge.evaluation {
    background-color: #28a745; /* cor de exemplo */
  }
  
  .air .flight-card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
  }
  
  .air .flight-info-left {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  .air .flight-info-left .arrow {
    font-size: 1.2rem;
    color: #666;
  }
  
  .air .flight-info-middle {
    flex: 1;
    text-align: center;
    font-size: 0.95rem;
    color: #555;
  }
  
  .air .flight-info-right {
    text-align: right;
    min-width: 180px;
  }
  
  .air .price-label {
    font-size: 0.9rem;
    color: #555;
    display: block;
    margin-bottom: 4px;
  }
  
  .air .price {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--dark-color);
  }
  
  .air .tax {
    font-size: 0.85rem;
    color: #555;
  }
  
  .air .flight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 10px;
  }
  
  .air .flight-type {
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
  }
  
  .air .expand-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .air .tariff-options {
    display: none;
    margin-top: 10px;
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
  }
  
  .air .tariff {
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--light-color);
  }
  
  .air .tariff h4 {
    margin-bottom: 8px;
  }
  
  .air .tariff ul {
    list-style: none;
    margin-bottom: 8px;
    padding-left: 0;
  }
  
  .air .tariff li {
    margin-bottom: 4px;
  }
  
  .air .select-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
  }

  /* Se já existe .air, mantenha. Só inclua as novas classes. */

/* Cada “flight-card-body” representa uma linha (Ida, Volta, Preço) */
.air .flight-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    /* Você pode ajustar margens e espaçamentos conforme desejar */
  }
  
  /* Linha divisória */
  .air .divider {
    border-top: 1px solid #ccc;
    margin: 0 10px; /* Ajuste conforme quiser */
  }
  
  /* Colunas esquerda/direita para cada linha */
  .air .left-col {
    font-size: 1rem;
    font-weight: normal;
  }
  
  .air .right-col {
    font-size: 1rem;
    font-weight: normal;
    text-align: right;
    min-width: 200px; /* Ajuste conforme desejar */
  }
    /* Texto em cinza, sem negrito */
    .air .price-label-custom {
        color: #666;          /* cinza */
        font-size: 0.9rem;    /* um pouco menor */
        font-weight: normal;  /* sem negrito */
    }
    
    /* Valor em destaque: maior e em negrito */
    .air .price-value-custom {
        font-size: 1.2rem;    /* maior */
        font-weight: bold;    /* negrito */
        color: var(--dark-color); /* cor de texto principal */
    }

    /* Estilos para a classe .bus (mesmos estilos de .air) */
.bus .flight-card {
    border: 2px solid #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    background-color: var(--light-color);
  }
  
  .bus .flight-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .bus .badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--light-color);
  }
  
  .bus .badge.recommended {
    background-color: #ffa500; /* Exemplo */
  }
  
  .bus .badge.evaluation {
    background-color: #28a745; /* Exemplo */
  }
  
  .bus .flight-card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
  }
  
  .bus .left-col {
    font-size: 1rem;
    font-weight: normal;
  }
  
  .bus .right-col {
    font-size: 1rem;
    font-weight: normal;
    text-align: right;
    min-width: 180px;
  }
  
  .bus .divider {
    border-top: 1px solid #ccc;
    margin: 0 10px;
  }
  
  .bus .price-label-custom {
    color: #666;
    font-size: 0.9rem;
    font-weight: normal;
  }
  
  .bus .price-value-custom {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--dark-color);
  }
  
  .bus .flight-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    margin-top: 10px;
  }
  
  .bus .flight-type {
    font-size: 0.9rem;
    color: #666;
    font-weight: bold;
  }
  
  .bus .expand-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }


  .grupo-botoes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
  }
  
  .bus-btn {
    background-color: #f5a623;
    color: #fff;
    border: none;
    padding: 10px 14px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
  }
  
  .bus-btn.active {
    background-color: #4B5360;
    color: #fff;
  }
  
  .bus-btn:hover {
    background-color: #d88a00;
  }
  
  .bus-btn:hover {
    background-color: #fcd18b;
  }
  
  
  /* Tariff options (mesmo estilo de .air) */
  .bus .tariff-options {
    display: none;
    margin-top: 10px;
    background-color: var(--secondary-color);
    padding: 15px;
    border-radius: 8px;
  }
  
  .bus .tariff {
    border: 1px solid var(--dark-color);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--light-color);
  }
  
  .bus .tariff h4 {
    margin-bottom: 8px;
  }
  
  .bus .tariff ul {
    list-style: none;
    margin-bottom: 8px;
    padding-left: 0;
  }
  
  .bus .tariff li {
    margin-bottom: 4px;
  }
  
  .bus .select-btn {
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
  }

  .whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-float img {
    width: 35px;
    margin-top: 12px;
}

  
  
  

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: var(--primary-color);
    margin-top: 10px;
}

footer p {
    color: var(--dark-color);
}

/* Ajustes gerais para dispositivos móveis */
@media (max-width: 768px) {
    body {
        font-size: 0.9rem;
    }

    /* Header */
    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .logo {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 6px 10px;
    }

    /* Menu */
    .menu {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    /* Banners */
    .main-banner-home,
    .main-banner-air,
    .main-banner-bus {
        height: 300px;
        padding: 10px;
        background-size: cover;
    }

    .main-banner h2 {
        font-size: 1.5rem;
        padding: 8px 12px;
    }

    /* Cards */
    .cards-container,
    .cards-container-img-certificado {
        grid-template-columns: 1fr;
        padding: 10px;
    }

    .card,
    .card-img-certificado {
        width: 100%;
        margin: 10px 0;
    }

    .card img {
        height: 120px;
    }

    .card h3 {
        font-size: 1rem;
    }

    /* Formulários */
    .search-form,
    .contact-card form {
        flex-direction: column;
        gap: 10px;
    }

    .search-form select,
    .search-form button,
    .contact-card input,
    .contact-card textarea {
        width: 100%;
    }

    .contact-card button {
        padding: 12px;
    }

    /* About Section */
    .about-container,
    .how-it-works-section {
        padding: 10px;
    }

    .about-card,
    .how-it-card {
        flex-direction: column;
        max-height: none;
        margin-bottom: 20px;
    }

    .about-image,
    .how-it-card .about-image {
        width: 100%;
        max-width: 50%; /* Reduz o tamanho da imagem no mobile */
        margin: 0 auto; /* Centraliza a imagem */
        display: flex; /* Torna o container flexível */
        justify-content: center; /* Garante que a imagem fique centralizada */
    }
    
    .about-image img,
    .how-it-card .about-image img {
        width: 100%; /* Faz a imagem ocupar todo o espaço disponível */
        height: auto; /* Mantém a proporção correta */
        border-radius: 10px;
    }

    .about-text,
    .how-it-card .about-text {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    /* FAQ */
    .faq-section,
    .faq-item {
        padding: 10px;
    }

    .faq-question {
        font-size: 1rem;
        padding: 10px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        font-size: 0.8rem;
        padding: 8px;
    }

    /* WhatsApp Float Button */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float img {
        width: 30px;
        margin-top: 10px;
    }

    /* Air e Bus Cards */
    .air .flight-card-body,
    .bus .flight-card-body {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .air .flight-info-left,
    .bus .flight-info-left,
    .air .flight-info-middle,
    .bus .flight-info-middle,
    .air .flight-info-right,
    .bus .flight-info-right {
        text-align: left;
        font-size: 0.9rem;
    }

    /* Botões */
    .expand-btn,
    .select-btn {
        width: 100%;
        margin-top: 5px;
    }

    /* Termos */
    .termo-section {
        margin: 10px;
        padding: 10px;
    }

    .termo-title {
        font-size: 1.5rem;
    }

    .termo-text p {
        font-size: 0.9rem;
    }


}
/* Estilos para o Menu Hambúrguer */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-top: 10px;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    margin: 4px 0;
    transition: all 0.3s;
}

/* Menu oculto inicialmente */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* Menu Mobile */
.menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100%;
    width: 250px;
    background-color: var(--light-color);
    transition: right 0.4s;
    z-index: 1000;
    padding: 20px;
}

/* Estilo do menu quando ativo */
.menu-mobile.active {
    right: 0;
}

/* Links do menu mobile */
.menu-mobile a {
    display: block;
    padding: 15px;
    margin: 10px 0;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.menu-mobile a:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    border-radius: 5px;
}

/* Exibição do menu hambúrguer em telas menores */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* Cards (Desktop - Mantém o que você já tinha) */
.cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.card button, .card a {
    background-color: var(--primary-color);
    border: none;
    padding: 10px 20px;
    color: var(--dark-color);
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.card button:hover, .card a:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}



/* Mobile (2 cards por linha apenas no mobile) */
@media (max-width: 768px) {
    .cards-container {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Estilo do vídeo (Desktop) */
.video-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

video {
    width: 100%;
    height: 600px; 
    object-fit: cover;
    border-radius: 10px;
}

/* Estilo do vídeo (Mobile - Máx. 768px) */
@media (max-width: 768px) {
    .video-container {
        margin-top: 20px;
        border-radius: 10px;
        overflow: hidden;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    video {
        width: 100%;
        height: 20% !important;
        object-fit: contain; /* Para garantir que o vídeo não seja cortado */
    }
}
/* Ajuste para o Card da História (Mobile) */
@media (max-width: 768px) {
    .historia-card .card-content {
        flex-direction: column;
    }

    .historia-card .about-image {
        order: -1;
        margin-bottom: 15px;
        text-align: center;
    }

    .historia-card .about-image img {
        max-width: 100%; /* Reduz o tamanho da imagem no mobile */
        height: auto;
        margin: 0 auto; /* Centraliza a imagem */
    }

    .historia-card .about-text {
        text-align: center;
    }
}

/* Estilos Gerais para o Contato */
.contact-section {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

/* Estilo das Divs de Contato */
.contact-card {
    flex: 1;
    background-color: var(--secondary-color);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsividade para Modo Mobile */
@media (max-width: 768px) {
    .contact-section {
        display: flex;
        flex-direction: column; /* Coloca um embaixo do outro */
        gap: 20px;
    }

    .contact-card {
        width: 100%; /* Garante que o card ocupe toda a largura disponível */
    }
}

/* Fundo Pet - Ajuste Responsivo */
@media (max-width: 768px) {
    .fundo-card {
        background-image: none; /* Remove imagem de fundo no mobile */
        background-color: var(--primary-color); /* Coloca o fundo laranja */
        border-radius: 10px;
        padding: 20px;
        margin-bottom: 20px;
    }

    .fundopet-title {
        text-align: center;
        margin-bottom: 10px;
        font-size: 1.5rem;
    }

    .fundopet-text {
        font-size: 1rem;
        line-height: 1.5;
    }
}






