/* Estilos Gerais */
/* ============================================
   Desire Travel - Manutenção Industrial
   Stylesheet Completo - v2.1
   - quinta-feira, 12 de março de 2026 - as 13:08 horas -
   ============================================ */

/* 🎨 VARIÁVEIS E RESET */
:root {
    --primary: #0d6efd;
    --primary-dark: #0a58ca;
    --secondary: #6c757d;
    --success: #198754;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
    --transition: all 0.3s ease;
}

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

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: #333;
    background: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--dark);
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; display: block; }

/* 🧭 HEADER & NAV */
.header {
    background: #fff;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1030;
    padding: 0.5rem 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    max-height: 45px;
    width: auto;
}

.nav-link {
    font-weight: 500;
    color: var(--dark) !important;
    padding: 0.5rem 1rem !important;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover::after { transform: scaleX(1); }

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* 🦸 HERO SECTION */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(13,110,253,0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.hero .lead {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.hero p {
    margin-bottom: 1rem;
    color: #555;
}

.form-container {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.08);
}

.form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.form-control, .form-select {
    border: 1px solid #ced4da;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.form-control::placeholder { color: #adb5bd; }

/* ✅ VALIDAÇÃO DE E-MAIL */
.form-control.is-warning {
    border-color: var(--warning) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25) !important;
    background-color: #fffdf5;
    transition: var(--transition);
}

.form-control.is-warning:focus {
    border-color: var(--warning) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.35) !important;
}

/* ✅ PROPOSTA DE VALOR */
.value-prop-alert {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%) !important;
    border: none !important;
    color: white !important;
    font-size: 1.05rem;
    border-radius: 10px;
    padding: 1rem 1.25rem;
}

.value-prop-alert strong {
    font-weight: 700;
}

.value-prop-alert i {
    opacity: 0.95;
}

.value-prop-alert .d-block {
    margin-top: 0.25rem;
    opacity: 0.95;
}

/* 🎯 BENEFITS SECTION */
.benefits { padding: 5rem 0; }

.benefits h2 { font-size: 2rem; }

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #e9ecef;
}

.benefit-card .icon-container {
    width: 70px;
    height: 70px;
    background: rgba(13,110,253,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.benefit-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* 📋 HOW IT WORKS */
.how-it-works { padding: 5rem 0; }

.step-card {
    background: #fff;
    border-radius: 12px;
    text-align: center;
}

.step-number {
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.step-card h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* 🧳 TRIP TYPES */
.trip-types { padding: 5rem 0; }

.trip-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    border-left: 4px solid var(--primary);
}

.trip-icon {
    width: 60px;
    height: 60px;
    background: rgba(13,110,253,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: var(--transition);
}

.trip-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.trip-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* ✅ MICRO-INTERAÇÃO */
.benefit-card:hover .icon-container,
.trip-card:hover .trip-icon {
    background: rgba(13,110,253,0.2);
    transform: scale(1.05);
}

/* ❓ FAQ SECTION */
.faq { padding: 5rem 0; }

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background: rgba(13,110,253,0.05);
    color: var(--primary);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}

.accordion-body {
    color: #555;
    line-height: 1.7;
}

/* 📞 CONTACT SECTION */
.contact { padding: 5rem 0; background: #fff; }

.contact h2 { font-size: 2rem; }

.contact-form-container {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
}

.contact-form-container .form-label {
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.contact-form-container .form-control,
.contact-form-container .form-select {
    border-radius: 8px;
    padding: 0.75rem 1rem;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* 🦶 FOOTER */
.footer {
    background: var(--dark) !important;
    padding: 4rem 0 2rem;
}

.footer h4 {
    color: #fff;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.footer p, .footer small {
    color: rgba(255,255,255,0.75);
}

.contact-info, .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li, .footer-links li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-info i, .footer-links i {
    color: var(--primary);
    margin-top: 4px;
    width: 16px;
    text-align: center;
}

.footer a {
    color: rgba(255,255,255,0.85);
    transition: var(--transition);
}

.footer a:hover {
    color: var(--primary) !important;
}

.copyright {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* 🎉 MODAL */
.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: var(--shadow-lg);
}

.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

.modal-body {
    padding-top: 0;
    font-size: 1.05rem;
}

/* 📱 RESPONSIVE */
@media (max-width: 991px) {
    .hero h1 { font-size: 2rem; }
    .form-container { margin-top: 2rem; }
}

@media (max-width: 767px) {
    .hero { padding: 3rem 0; }
    .hero h1 { font-size: 1.75rem; }
    .benefits, .how-it-works, .trip-types, .faq, .contact { padding: 3.5rem 0; }
    .form-container, .contact-form-container { padding: 1.5rem; }
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 1rem;
        box-shadow: var(--shadow-md);
    }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .btn-lg { padding: 0.75rem 1rem; font-size: 0.95rem; }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ♿ ACESSIBILIDADE */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* 🖨️ PRINT */
@media print {
    .header, .footer, .whatsapp-float, .btn { display: none !important; }
    body { background: #fff; color: #000; }
    a { color: #000; text-decoration: underline; }
}
