/* Estilos personalizados para a landing page corporativa Epeixão */
.hero-section {
    background: url('../images/hero-background.png') no-repeat center center;
    background-size: cover;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 25, 47, 0.7);
    /* Azul-escuro com 70% de opacidade */
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.frota-section {
    background: url('../images/nossa-frota.png') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 400px;
    /* Adiciona uma altura mínima */
}

.frota-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 25, 47, 0.6);
    /* Azul-escuro com 60% de opacidade */
    z-index: 1;
}

.frota-section .container {
    position: relative;
    z-index: 2;
}

/* Seção 5: Planos Disponíveis */
.card-plano-suave {
    border: 2px solid var(--bs-primary);
}

.card-plano-cheia {
    border: 2px solid var(--bs-warning);
}

/* Seção 6: Como Funciona (Timeline) */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bs-primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 2;
}

.timeline-content {
    position: relative;
    width: 45%;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content {
    left: 55%;
}

.timeline-item:nth-child(even) .timeline-content {
    left: 0;
    text-align: right;
}

/* Seção 9: Momentos Inesquecíveis */
.momentos-section {
    background: url('../images/momentos-inesqueciveis.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    min-height: 400px;
    /* Adiciona uma altura mínima */
}

.momentos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(10, 25, 47, 0.6);
    z-index: 1;
}

.momentos-section .container {
    position: relative;
    z-index: 2;
}

/* Seção 10: CTA Final */
.cta-box {
    background: linear-gradient(45deg, #005f9e, #f57c1f);
}

.card-plano-boa {
    border: 2px solid var(--bs-info);
}

:root {
    /* Design System V2 Epeixão */
    --epeixao-blue-navy: #005f9e;
    --epeixao-blue-light: #3cc0ed;
    --epeixao-orange: #ea4e1b;
    --epeixao-white: #ffffff;
    --neutral-light: #f8f9fa;

    /* Bootstrap Overrides */
    --bs-primary: var(--epeixao-blue-navy);
    --bs-secondary: #6c757d;
    --bs-info: var(--epeixao-blue-light);
    --bs-warning: var(--epeixao-orange);
}

body {
    font-family: 'Outfit', sans-serif;
}

/* Garante que o ícone de diamante use a nova cor laranja */
.text-warning {
    color: var(--bs-warning) !important;
}

/* Espaçamento vertical entre as seções */
section {
    margin-bottom: 4rem;
    /* Ajuste conforme necessário */
}

/* Remover margin-bottom da última seção para evitar espaço extra no final da página */
main section:last-of-type {
    margin-bottom: 0;
}

html {
    scroll-behavior: smooth;
}

/* Estilos para o formulário de montagem de plano */
.btn-check:checked+.btn-outline-primary {
    background-color: var(--bs-primary);
    color: white;
}

.btn-check:checked+.btn-outline-info {
    background-color: var(--bs-info);
    color: white;
}

.btn-check:checked+.btn-outline-warning {
    background-color: var(--bs-warning);
    color: black;
    /* Para melhor contraste com o amarelo */
}

.btn-check:checked+.btn-outline-secondary {
    background-color: var(--bs-secondary);
    color: white;
}

/* Estilos para o footer */
footer a {
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: var(--bs-warning) !important;
}

footer .list-inline-item a {
    font-size: 1.5rem;
    margin: 0 0.5rem;
}

/* Estilo para o nome do plano sugerido no formulário */
.plano-sugerido-destaque {
    font-weight: bold;
    color: var(--bs-primary);
}

.btn-laranja {
    background-color: #f57c1f;
    border-color: #f57c1f;
    color: #fff;
}

.btn-laranja:hover {
    background-color: #e06c14;
    border-color: #d46613;
    color: #fff;
}

/* Animação de pulsar para chamar a atenção (agora com a cor laranja) */
.btn-pulsar {
    animation: pulsar-laranja 1.5s infinite;
}

@keyframes pulsar-laranja {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 124, 31, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(245, 124, 31, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 124, 31, 0);
    }
}