:root {
  --azul: #00aeef;
  --laranja: #f58220;
  --azul-escuro: #101828;
  --texto-corpo: #475467;
  --titulo-cor: #101828;
  --bg-cinza: #f9fafb;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  color: var(--texto-corpo);
  line-height: 1.6;
  background: #fff;
  scroll-behavior: smooth;
}
a {
  text-decoration: none;
  transition: 0.3s;
}
ul {
  list-style: none;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background: #101828;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}
.logo img {
  height: 70px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav ul li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
nav ul li a:hover {
  color: var(--azul);
}
.btn-contato-nav {
  background: var(--laranja);
  color: #fff !important;
  padding: 10px 25px;
  border-radius: 8px;
  font-weight: 600;
}

/* HERO - CENTRALIZAÇÃO TOTAL */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/hero_001.jpg");
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center; /* Centraliza verticalmente */
  justify-content: center; /* Centraliza horizontalmente */
  text-align: center; /* Alinha textos e elementos inline ao meio */
  padding: 0 8%;
  color: #fff;
}

.hero-content {
  max-width: 850px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Garante que os containers filhos (stats e btns) se alinhem ao centro */
}

.hero-content h1 {
  font-size: 3.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* STATS CENTRALIZADOS */
.hero-stats {
  display: flex;
  justify-content: center; /* Centraliza os itens da linha */
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-item i {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.bg-azul {
  background: #00aeef;
}
.bg-laranja {
  background: #f58220;
}

.stat-text {
  text-align: left;
}

.stat-text strong {
  display: block;
  font-size: 18px;
  line-height: 1;
}

.stat-text span {
  font-size: 11px;
  opacity: 0.8;
}

/* BOTÕES CENTRALIZADOS */
.hero-btns {
  display: flex;
  justify-content: center; /* Centraliza os botões */
  gap: 20px;
}

.btn-primary {
  background: #f58220;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #101828;
}

/* SEÇÃO TÍTULOS PADRÃO */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--titulo-cor);
  margin-bottom: 10px;
}
.title-line {
  display: flex;
  justify-content: center;
  width: 80px;
  height: 3px;
  margin: 0 auto;
}
.line-b {
  background: var(--azul);
  width: 50%;
}
.line-o {
  background: var(--laranja);
  width: 50%;
}
.section-subtitle {
  margin-top: 15px;
  font-size: 15px;
  color: var(--texto-corpo);
}

/* SOBRE A ALEGRA TUR */
.sobre {
  padding: 100px 8%;
}
.sobre-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-img-frame {
  position: relative;
}
.sobre-img-frame::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  background: var(--azul);
  border-radius: 20px;
  z-index: -1;
}
.sobre-img-frame::after {
  content: "";
  position: absolute;
  bottom: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  background: var(--laranja);
  border-radius: 20px;
  z-index: -1;
}
.sobre-img-frame img {
  width: 100%;
  border-radius: 20px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sobre-content h3 {
  font-size: 1.8rem;
  color: var(--titulo-cor);
  margin-bottom: 25px;
}
.sobre-content p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.sobre-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.value-box {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.v-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.v-blue {
  background: #e0f7ff;
  color: var(--azul);
}
.v-orange {
  background: #fff1e5;
  color: var(--laranja);
}
.v-text h4 {
  font-size: 15px;
  color: var(--titulo-cor);
  margin-bottom: 3px;
}
.v-text p {
  font-size: 12px;
  margin: 0;
}

/* SERVIÇOS */
.servicos {
  padding: 100px 8%;
  background: var(--bg-cinza);
}
.servicos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.servico-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
.s-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  margin-bottom: 25px;
}
.servico-card h3 {
  margin-bottom: 15px;
  color: var(--titulo-cor);
}
.servico-card p {
  font-size: 14px;
  margin-bottom: 25px;
}
.s-list {
  margin-bottom: 30px;
}
.s-list li {
  font-size: 13px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.s-list li i {
  color: var(--azul);
  font-size: 12px;
}
.btn-s-blue {
  background: var(--azul);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}
.btn-s-orange {
  background: var(--laranja);
  color: #fff;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

/* VIAGENS E DESTINOS */
.viagens {
  padding: 100px 8%;
}
.viagens-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.viagem-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}
.v-img-box {
  position: relative;
  height: 220px;
}
.v-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.v-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}
.v-overlay h3 {
  font-size: 16px;
  font-weight: 700;
}
.v-overlay p {
  font-size: 11px;
  opacity: 0.8;
}

.v-body {
  padding: 20px;
  background: #fff;
}
.v-info {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--texto-corpo);
}
.v-info i {
  color: var(--azul);
  width: 14px;
}
.btn-gradiente {
  background: linear-gradient(90deg, #59c2ee 0%, #f58220 100%);
  color: #fff;
  padding: 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 15px;
}

/* ENTRE EM CONTATO */
.contato {
  padding: 100px 8%;
  background: var(--bg-cinza);
}
.contato-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Colunas iguais para equilíbrio perfeito */
  gap: 60px;
  align-items: stretch; /* Força os dois lados a terem a mesma altura */
}
.contato-info {
  display: flex; /* Faz o container da imagem se comportar como flex */
  height: 100%;  /* Garante que o container ocupe toda a altura do grid */
}

.contato-info img {
  width: 100%;
  height: 100%;    /* Força a imagem a ter a mesma altura do formulário */
  object-fit: cover; /* Recorta a imagem proporcionalmente para preencher o espaço */
  border-radius: 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 0; /* Removido para manter o alinhamento perfeito */
}
.contato-info h3 {
  font-size: 1.5rem;
  color: var(--titulo-cor);
  margin-bottom: 25px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  border: 1px solid #eaecf0;
}
.ic-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ic-details h4 {
  font-size: 14px;
  color: var(--titulo-cor);
  margin-bottom: 2px;
}
.ic-details p {
  font-size: 13px;
  margin: 0;
}

/* Container que agrupa o título e os cards */
.contato-bottom-container {
    width: 100%;
    margin-top: 50px;
    padding: 40px 0;
    background-color: #f9f9f9; /* Opcional: cor de fundo para destacar */
}

.contato-bottom-container h3 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

/* Grid de 2 colunas */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Cria 2 colunas iguais */
    gap: 20px; /* Espaço entre os cards */
    max-width: 1200px; /* Limita a largura para não esticar demais em telas ultra-wide */
    margin: 0 auto; /* Centraliza o container */
    padding: 0 20px;
}

/* Estilo individual do card para garantir que fiquem bem apresentados */
.info-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

/* Responsividade: No celular vira 1 coluna só */
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

.form-box {
  background: #fff;
  padding: 45px;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.form-box h3 {
  margin-bottom: 30px;
  color: var(--titulo-cor);
}
.field {
  margin-bottom: 20px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--titulo-cor);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  outline: none;
  font-size: 14px;
}
.btn-send {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #59c2ee 0%, #f58220 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}



.btn-orange {
    background-color: #F58220 !important; /* Laranja da Alegra Tur */
    color: #FFFFFF !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex; /* Mantém o botão do tamanho do texto */
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 130, 32, 0.3);
}

.btn-orange:hover {
    background-color: #e3751a !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 130, 32, 0.4);
}

.btn-orange i {
    font-size: 12px;
}

/* CERTIFICAÇÕES */

.certificacoes-barra {
    background-color: #f8f9fa; /* Um cinza bem claro para destacar do branco */
    padding: 30px 8%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.container-selos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.selo-texto span {
    font-weight: 700;
    font-size: 14px;
    color: #475467;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selos-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.selo-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selo-box img {
    height: 55px; /* Altura ideal para não ficar exagerado */
    width: auto;
    filter: grayscale(100%); /* Mantém a elegância em P&B */
    opacity: 0.6;
    transition: 0.3s ease;
}

.selo-box:hover img {
    filter: grayscale(0%); /* Mostra as cores originais no hover */
    opacity: 1;
}

.selo-box p {
    font-size: 11px;
    font-weight: 600;
    color: #667085;
    margin: 0;
    line-height: 1.2;
}

/* Responsividade para celulares */
@media (max-width: 768px) {
    .container-selos {
        flex-direction: column;
        gap: 20px;
    }
    .selos-flex {
        flex-direction: column;
        gap: 25px;
    }
}

/* RODAPÉ */
footer {
  background: var(--azul-escuro);
  color: #eaecf0;
  padding: 80px 8% 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-col img {
  height: 65px;
  margin-bottom: 20px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.7;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 25px;
  font-size: 16px;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links li a {
  color: #98a2b3;
  font-size: 14px;
}
.f-contact li {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #98a2b3;
  margin-bottom: 15px;
}
.f-contact i {
  color: var(--azul);
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: #667085;
}
.socials {
  display: flex;
  gap: 15px;
}
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1d2939;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
position: fixed;
bottom: 30px;
right: 30px;
background: #25d366;
color: white;
width: 65px;
height: 65px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 35px;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
z-index: 1000;
text-decoration: none;
transition: 0.3s;
}
.whatsapp-float:hover { transform: scale(1.1); background: #128c7e; }

/* --- RESPONSIVIDADE COMPLETA --- */

/* Estilo do ícone hambúrguer (escondido por padrão no desktop) */
.menu-icon {
    display: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 1024px) {
    /* Header & Menu */
    .menu-icon { display: block; }

    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #101828;
        height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    }

    nav.active { height: 350px; } /* Altura do menu aberto */

    nav ul {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }

    /* Ajustes Gerais de Seções */
    .hero { height: auto; padding: 120px 5%; }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-stats { gap: 15px; }
    .stat-item { padding: 10px 20px; }

    .sobre, .servicos, .viagens, .contato { padding: 60px 5%; }
    
    .sobre-container, .servicos-grid, .viagens-grid, .contato-wrapper, .footer-grid {
        grid-template-columns: 1fr; /* Empilha tudo em uma coluna */
    }

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

    /* Ajuste da imagem de contato no mobile */
    .contato-info { height: 300px; }
    
    /* Botões Hero */
    .hero-btns { flex-direction: column; width: 100%; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .section-header h2 { font-size: 1.8rem; }
    .whatsapp-float { width: 55px; height: 55px; font-size: 28px; bottom: 20px; right: 20px; }
}
