/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1f2933;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== MENU ===== */
.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 12px 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo img {
    height: 95px;
    width: auto;
    transition: transform 0.2s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu a {
    text-decoration: none;
    color: #1f2933;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #2f855a;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1f2933;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ===== BANNER AZUL ===== */
.banner-grupos-2026 {
    margin-top: 105px;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: #ffffff;
    padding: 50px 0;
    text-align: center;
}

.banner-grupos-conteudo h2 {
    font-size: 32px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.banner-grupos-conteudo p {
    font-size: 16px;
    margin-bottom: 22px;
    line-height: 1.6;
}

.btn-banner {
    background: #ffffff;
    color: #1e3a8a;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-banner:hover {
    background: #dbeafe;
    transform: translateY(-2px);
}

/* ===== HERO VERDE ===== */
.hero {
    background: linear-gradient(135deg, #2f855a 0%, #22543d 100%);
    padding: 70px 0;
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 44px;
    margin-bottom: 12px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    margin-bottom: 22px;
    opacity: 0.95;
}

.hero-badge {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background: rgba(255,255,255,0.15);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 15px;
}

.badge-icon {
    font-size: 20px;
}

/* ===== SOBRE ===== */
.sobre {
    padding: 60px 0;
    background: #f7fafc;
    text-align: center;
}

.sobre h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2933;
}

.sobre p {
    font-size: 17px;
    max-width: 800px;
    margin: 0 auto 12px auto;
    color: #52606d;
}

/* ===== ROTEIROS (CARDS NA HOME) ===== */
.roteiros {
    padding: 60px 0;
    background: #ffffff;
}

.roteiros h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #1f2933;
}

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

.roteiro-card {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.roteiro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.roteiro-imagem-wrapper {
    position: relative;
    overflow: hidden;
}

.roteiro-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.badge-ultimas-vagas {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #dc2626;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.tag-fechado {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #64748b;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.roteiro-card.fechado {
    opacity: 0.75;
}

.roteiro-card h3 {
    font-size: 20px;
    margin: 18px 20px 10px 20px;
    color: #1f2933;
}

.roteiro-card p {
    font-size: 14px;
    color: #52606d;
    margin: 0 20px 18px 20px;
}

.roteiro-card .btn,
.roteiro-card .btn-secundario {
    display: block;
    text-align: center;
    margin: 0 20px 20px 20px;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.roteiro-card .btn {
    background: #2f855a;
    color: #ffffff;
}

.roteiro-card .btn:hover {
    background: #276749;
}

.roteiro-card .btn-secundario {
    background: #e2e8f0;
    color: #1f2933;
}

.roteiro-card .btn-secundario:hover {
    background: #cbd5e0;
}
/* ===== CARD DE NOVOS ROTEIROS ===== */
.card-novos-roteiros {
    margin-top: 50px;
    background: linear-gradient(135deg, #2f855a 0%, #22543d 100%);
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(47, 133, 90, 0.3);
}

.novos-roteiros-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.icone-novidade {
    font-size: 36px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.novos-roteiros-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.novos-roteiros-subtitulo {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.novos-roteiros-lista {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.novo-destino {
    background: rgba(255, 255, 255, 0.15);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.novo-destino:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.icone-destino {
    font-size: 28px;
}

.novo-destino strong {
    font-size: 16px;
    font-weight: 600;
}

.novos-roteiros-destaque {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.icone-check {
    font-size: 24px;
}

.novos-roteiros-destaque p {
    margin: 0;
    font-size: 16px;
}

.btn-novos-roteiros {
    display: inline-block;
    background: #ffffff;
    color: #2f855a;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-novos-roteiros:hover {
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

/* RESPONSIVO MOBILE */
@media (max-width: 768px) {
    .card-novos-roteiros {
        margin-top: 30px;
        padding: 30px 20px;
    }

    .novos-roteiros-header h3 {
        font-size: 22px;
    }

    .novos-roteiros-lista {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .novo-destino {
        padding: 12px;
    }

    .icone-destino {
        font-size: 24px;
    }

    .novo-destino strong {
        font-size: 15px;
    }
}

/* ===== PÁGINAS DE ROTEIRO DETALHADO ===== */
.roteiro-hero {
    position: relative;
    height: 450px;
    margin-top: 105px;
    overflow: hidden;
}

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

.roteiro-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #ffffff;
    padding: 40px 20px 30px 20px;
}

.roteiro-hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    font-weight: 700;
}

.roteiro-hero-subtitle {
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0.95;
}

.roteiro-hero-info {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 15px;
}

.roteiro-hero-info span {
    background: rgba(255,255,255,0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

.roteiro-main {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.roteiro-section {
    margin-bottom: 40px;
}

.roteiro-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1f2933;
    border-bottom: 3px solid #2f855a;
    padding-bottom: 10px;
}

.roteiro-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #52606d;
    margin-bottom: 15px;
}

.roteiro-section ul {
    list-style: none;
    padding-left: 0;
}

.roteiro-section ul li {
    padding: 8px 0 8px 30px;
    position: relative;
    font-size: 16px;
    color: #52606d;
}

.roteiro-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2f855a;
    font-weight: bold;
    font-size: 18px;
}

.dia-item {
    background: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #2f855a;
}

.dia-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f2933;
}

.dia-item p {
    font-size: 15px;
    color: #52606d;
    margin: 0;
}

.btn-pdf,
.btn-contato {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-right: 15px;
    margin-bottom: 15px;
}

.btn-pdf {
    background: #dc2626;
    color: #ffffff;
}

.btn-pdf:hover {
    background: #b91c1c;
}

.btn-contato {
    background: #2f855a;
    color: #ffffff;
}

.btn-contato:hover {
    background: #276749;
}

/* ===== DIFERENCIAIS ===== */
.diferenciais {
    padding: 60px 0;
    background: #f7fafc;
}

.diferenciais h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1f2933;
}

.diferenciais .subtitle {
    text-align: center;
    font-size: 17px;
    color: #52606d;
    margin-bottom: 40px;
}

.diferenciais-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.diferencial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.diferencial-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.diferencial-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1f2933;
}

.diferencial-card p {
    font-size: 14px;
    color: #52606d;
}

/* ===== CONTATO ===== */
.contato {
    padding: 60px 0;
    background: #ffffff;
}

.contato h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
    color: #1f2933;
}

.contato .subtitle {
    text-align: center;
    font-size: 17px;
    color: #52606d;
    margin-bottom: 40px;
}

.contato-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.contato-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1f2933;
}

.contato-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contato-icon {
    font-size: 24px;
}

.contato-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: #1f2933;
}

.contato-item p {
    font-size: 14px;
    color: #52606d;
}

.contato-item a {
    color: #2f855a;
    text-decoration: none;
}

.contato-item a:hover {
    text-decoration: underline;
}

/* ===== FORMULÁRIO DE CONTATO ===== */
.contato-form {
    background: #f7fafc;
    padding: 30px;
    border-radius: 8px;
}

.contato-form h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1f2933;
}

.contato-form form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contato-form input,
.contato-form textarea,
.contato-form select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: border-color 0.3s ease;
}

.contato-form input:focus,
.contato-form textarea:focus,
.contato-form select:focus {
    outline: none;
    border-color: #2f855a;
}

.contato-form textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    background: #2f855a;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    background: #276749;
    transform: translateY(-2px);
}

/* ===== RODAPÉ ===== */
footer {
    background: #1f2933;
    color: #ffffff;
    padding: 40px 0;
    text-align: center;
}

footer img {
    height: 60px;
    margin-bottom: 10px;
}

footer p {
    font-size: 14px;
    color: #cbd5e0;
}

/* ===== RESPONSIVO MOBILE ===== */
@media (max-width: 768px) {

    /* MENU HAMBURGER */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 20px 20px 20px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.2);
        z-index: 999;
        gap: 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-menu li a {
        display: block;
        padding: 16px 12px;
        font-size: 16px;
    }

    .logo img {
        height: 75px;
    }

    /* BANNER AZUL */
    .banner-grupos-2026 {
        padding: 40px 20px;
        margin-top: 90px;
    }

    .banner-grupos-conteudo h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .banner-grupos-conteudo p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* HERO VERDE */
    .hero {
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* SEÇÕES GERAIS */
    .sobre,
    .roteiros,
    .diferenciais,
    .contato {
        padding: 40px 0;
    }

    /* CARDS DE ROTEIROS */
    .roteiros-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .roteiro-card img {
        height: 200px;
    }

    /* HERO DOS ROTEIROS DETALHADOS */
    .roteiro-hero {
        margin-top: 90px;
        height: 300px;
    }

    .roteiro-hero-content {
        padding: 25px 15px 20px 15px;
    }

    .roteiro-hero-content h1 {
        font-size: 24px;
    }

    .roteiro-hero-subtitle {
        font-size: 14px;
    }

    .roteiro-hero-info {
        font-size: 13px;
        gap: 10px;
    }

    .roteiro-hero-info span {
        padding: 5px 10px;
        font-size: 12px;
    }

    .roteiro-main {
        padding: 20px 15px;
    }

    .roteiro-section h2 {
        font-size: 22px;
    }

    .roteiro-section p {
        font-size: 15px;
    }

    .dia-item {
        padding: 15px;
    }

    .dia-item h3 {
        font-size: 16px;
    }

    .dia-item p {
        font-size: 14px;
    }

    .btn-pdf,
    .btn-contato {
        display: block;
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    /* FORMULÁRIO MOBILE */
    .contato-grid {
        grid-template-columns: 1fr;
    }

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