﻿#inicio.hero-section {
    /* Fallback gradient */
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%) !important;
    /* Image with overlay */
    background-image: url('/assets/images/hero-bg.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#inicio .hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    z-index: 1 !important;
}

#inicio .container,
#inicio .row,
#inicio .col-lg-8 {
    position: relative !important;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

#inicio .hero-title,
#inicio h1 {
    color: #ffffff !important;
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8) !important;
    margin-bottom: 1.5rem !important;
    position: relative !important;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#inicio .hero-subtitle,
#inicio p {
    color: #ffffff !important;
    font-size: 1.25rem !important;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7) !important;
    margin-bottom: 2rem !important;
    position: relative !important;
    z-index: 100 !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

#inicio .btn,
#inicio a.btn {
    position: relative !important;
    z-index: 100 !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1976d2 !important;
    border: 2px solid rgba(255, 255, 255, 0.95) !important;
    font-weight: 600 !important;
    padding: 12px 30px !important;
    font-size: 1.1rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: inline-block !important;
}

    #inicio .btn:hover {
        background: rgba(255, 255, 255, 1) !important;
        color: #1976d2 !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }

/* DESABILITAR ANIMAÇÕES NA HERO SECTION */
#inicio .animate-fade-in-up,
#inicio .animate-scale-in,
#inicio .animate-stagger-1,
#inicio .animate-stagger-2,
#inicio .animate-stagger-3,
#inicio [data-animate] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

/* ===== RESPONSIVIDADE MELHORADA HERO SECTION ===== */
@media (max-width: 1200px) {

    #inicio .hero-title,
    #inicio h1 {
        font-size: 3rem !important;
    }
}

@media (max-width: 992px) {

    #inicio .hero-title,
    #inicio h1 {
        font-size: 2.8rem !important;
    }

    #inicio .hero-subtitle,
    #inicio p {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    #inicio {
        background-attachment: scroll !important;
        min-height: 80vh !important;
    }

        #inicio .hero-title,
        #inicio h1 {
            font-size: 2.2rem !important;
            line-height: 1.2 !important;
            margin-bottom: 1rem !important;
        }

        #inicio .hero-subtitle,
        #inicio p {
            font-size: 1.1rem !important;
            margin-bottom: 1.5rem !important;
            line-height: 1.4 !important;
        }

        #inicio .btn {
            padding: 12px 24px !important;
            font-size: 1rem !important;
        }
}

@media (max-width: 576px) {
    #inicio {
        min-height: 70vh !important;
        padding: 1rem 0 !important;
    }

        #inicio .hero-title,
        #inicio h1 {
            font-size: 1.8rem !important;
            margin-bottom: 0.75rem !important;
        }

        #inicio .hero-subtitle,
        #inicio p {
            font-size: 1rem !important;
            margin-bottom: 1.25rem !important;
        }

        #inicio .btn {
            padding: 10px 20px !important;
            font-size: 0.95rem !important;
            width: 100% !important;
            max-width: 280px !important;
        }
}

@media (max-width: 480px) {

    #inicio .hero-title,
    #inicio h1 {
        font-size: 1.6rem !important;
    }

    #inicio .hero-subtitle,
    #inicio p {
        font-size: 0.95rem !important;
    }
}

/* ===== ORIENTAÇÃO LANDSCAPE MOBILE ===== */
@media (max-height: 500px) and (orientation: landscape) {
    #inicio {
        min-height: 100vh !important;
        padding: 0.5rem 0 !important;
    }

        #inicio .hero-title,
        #inicio h1 {
            font-size: 1.8rem !important;
            margin-bottom: 0.5rem !important;
        }

        #inicio .hero-subtitle,
        #inicio p {
            font-size: 0.9rem !important;
            margin-bottom: 1rem !important;
        }

        #inicio .btn {
            padding: 8px 16px !important;
            font-size: 0.9rem !important;
        }
}

/* GARANTIR QUE NADA SOBRESCREVA */
#inicio * {
    will-change: auto !important;
}

/* VALIDAÇÃO DE FORMULÁRIO MELHORADA - BORDAS SUAVES */
.form-control,
.form-select {
    transition: all 0.3s ease !important;
    border: 1px solid rgba(25, 118, 210, 0.15) !important;
    border-radius: 12px !important;
    padding: 14px 18px !important;
    font-size: 1rem !important;
    background-color: #ffffff !important;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.06) !important;
    font-weight: 500 !important;
}

    .form-control:focus,
    .form-select:focus {
        border-color: #1976d2 !important;
        box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.12), 0 4px 12px rgba(25, 118, 210, 0.08) !important;
        outline: none !important;
        background-color: #ffffff !important;
        transform: translateY(-1px) !important;
    }

    .form-control.is-valid {
        border-color: #43a047 !important;
        background-color: rgba(67, 160, 71, 0.02) !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%2343a047' d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425a.247.247 0 0 1 .02-.022Z'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: right 16px center !important;
        background-size: 18px 18px !important;
        box-shadow: 0 2px 8px rgba(67, 160, 71, 0.08) !important;
    }

    .form-control.is-invalid {
        border-color: #dc3545 !important;
        background-color: rgba(220, 53, 69, 0.02) !important;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23dc3545' d='M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zM5.354 4.646a.5.5 0 1 0-.708.708L7.293 8l-2.647 2.646a.5.5 0 0 0 .708.708L8 8.707l2.646 2.647a.5.5 0 0 0 .708-.708L8.707 8l2.647-2.646a.5.5 0 0 0-.708-.708L8 7.293 5.354 4.646z'/%3e%3c/svg%3e") !important;
        background-repeat: no-repeat !important;
        background-position: right 16px center !important;
        background-size: 18px 18px !important;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.08) !important;
    }

/* Labels dos campos - SEM ASTERISCO */
.form-label {
    font-weight: 600 !important;
    color: #1976d2 !important;
    margin-bottom: 0.75rem !important;
    font-size: 1rem !important;
    letter-spacing: 0.3px !important;
}

/* REMOVER APENAS ASTERISCO DOS LABELS - SEM AFETAR ÍCONES */
#contactForm .form-label::after,
#contactForm label::after {
    content: "" !important;
    display: none !important;
}

/* Garantir que ícones Bootstrap Icons funcionem */
.bi::before,
[class^="bi-"]::before,
[class*=" bi-"]::before {
    font-family: "bootstrap-icons" !important;
    display: inline-block !important;
}

/* BORDAS SUAVES FINAIS - SIMILAR AOS CARDS DE CONTATO */
.form-control,
.form-select {
    border: 1px solid rgba(25, 118, 210, 0.12) !important;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(5px) !important;
}

    .form-control:hover,
    .form-select:hover {
        border-color: rgba(25, 118, 210, 0.25) !important;
        box-shadow: 0 2px 12px rgba(25, 118, 210, 0.08) !important;
    }

/* Garantir que não há bordas pretas */
input,
select,
textarea {
    border-color: rgba(25, 118, 210, 0.12) !important;
}

    /* Textarea específico */
    textarea.form-control {
        resize: vertical !important;
        min-height: 120px !important;
        line-height: 1.6 !important;
    }

/* Placeholder styling */
.form-control::placeholder,
.form-select::placeholder {
    color: rgba(25, 118, 210, 0.4) !important;
    font-weight: 400 !important;
}

/* Select específico */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%231976d2' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 16px 12px !important;
}

/* Botão do formulário */
#contactForm .btn {
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 14px 32px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3) !important;
}

    #contactForm .btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4) !important;
    }

/* Container do formulário */
.contact-form {
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 20px !important;
    padding: 2.5rem !important;
    box-shadow: 0 8px 32px rgba(25, 118, 210, 0.08) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(25, 118, 210, 0.1) !important;
    transition: all 0.3s ease !important;
}

    .contact-form:hover {
        box-shadow: 0 12px 40px rgba(25, 118, 210, 0.12) !important;
        transform: translateY(-2px) !important;
    }

/* MAPA RESPONSIVO */
.map-container {
    position: relative;
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .map-container iframe {
        width: 100% !important;
        height: 100% !important;
        border: none !important;
        border-radius: 8px !important;
    }

@media (max-width: 768px) {
    .map-container {
        height: 250px;
    }
}

/* ÍCONES SOCIAIS MELHORADOS - APENAS REALÇAR NO HOVER */
.social-link {
    background: rgba(255, 255, 255, 0.95) !important;
    color: #1976d2 !important;
    border: 2px solid rgba(25, 118, 210, 0.2) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.1) !important;
}

    .social-link:hover {
        background: rgba(255, 255, 255, 1) !important;
        color: #1976d2 !important;
        border-color: #1976d2 !important;
        transform: translateY(-3px) scale(1.05) !important;
        box-shadow: 0 8px 20px rgba(25, 118, 210, 0.25) !important;
    }

/* BOTÕES PADRONIZADOS COMO ENVIAR MENSAGEM */
#trabalhe-conosco .btn,
#empresa .btn-primary,
.btn-primary.btn-lg {
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 16px 32px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3) !important;
    color: #ffffff !important;
}

    #trabalhe-conosco .btn:hover,
    #empresa .btn-primary:hover,
    .btn-primary.btn-lg:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4) !important;
        color: #ffffff !important;
    }

/* ÍCONES DA SEÇÃO EMPRESA - PADRONIZAR COM SERVIÇOS */
#empresa .feature-icon {
    font-size: 3.5rem !important;
    color: #ffffff !important;
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%) !important;
    padding: 1.25rem !important;
    border-radius: 50% !important;
    width: 90px !important;
    height: 90px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 8px 20px rgba(25, 118, 210, 0.3) !important;
    margin-bottom: 1.5rem !important;
}

#empresa .feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(10deg) !important;
    box-shadow: 0 12px 30px rgba(25, 118, 210, 0.4) !important;
}

/* Garantir que os ícones da empresa tenham o mesmo container */
#empresa .feature-item {
    text-align: center !important;
}

    /* Padronizar botões dos cards da empresa */
    #empresa .feature-item .btn {
        border-radius: 8px !important;
        padding: 12px 24px !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
    }

        #empresa .feature-item .btn:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
        }

/* IMAGENS DOS DEPOIMENTOS - PADRONIZADAS E PROPORCIONAIS */
.testimonial-avatar {
    margin-bottom: 1.5rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

    .testimonial-avatar img {
        width: 80px !important;
        height: 80px !important;
        object-fit: cover !important;
        border: 3px solid #1976d2 !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(25, 118, 210, 0.2) !important;
        background: linear-gradient(135deg, #e3f2fd 0%, #ffffff 100%) !important;
    }

.testimonial-card:hover .testimonial-avatar img {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.3) !important;
    border-color: #43a047 !important;
}

/* MODAL RESPONSABILIDADE AMBIENTAL - Gradiente verde */
#sustainabilityModal .modal-header {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%) !important;
}

#sustainabilityCarouselModal {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.15) !important;
}

    #sustainabilityCarouselModal .carousel-caption {
        bottom: 20px !important;
    }

        #sustainabilityCarouselModal .carousel-caption h4 {
            color: #ffffff !important;
            font-weight: 700 !important;
            margin-bottom: 10px !important;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
        }

        #sustainabilityCarouselModal .carousel-caption p {
            color: #ffffff !important;
            margin: 0 !important;
            font-size: 1rem !important;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
            line-height: 1.4 !important;
        }

#sustainabilityModal .card.border-success {
    border-color: #43a047 !important;
    border-width: 2px !important;
}

#sustainabilityModal .card.border-primary {
    border-color: #1976d2 !important;
    border-width: 2px !important;
}

#sustainabilityModal .btn-success {
    background: linear-gradient(135deg, #43a047 0%, #66bb6a 100%) !important;
    border: none !important;
}

    #sustainabilityModal .btn-success:hover {
        background: linear-gradient(135deg, #388e3c 0%, #43a047 100%) !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 6px 20px rgba(67, 160, 71, 0.4) !important;
    }

/* ESTILOS GERAIS DOS MODAIS */
.modal-content {
    border-radius: 16px !important;
    border: none !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
}

.modal-header {
    color: white !important;
    border-radius: 16px 16px 0 0 !important;
    border-bottom: none !important;
}

/* MODAL DA FROTA - Gradiente azul */
#frotaModal .modal-header {
    background: linear-gradient(135deg, #1976d2 0%, #43a047 100%) !important;
}

.modal-title {
    font-weight: 600 !important;
}

.btn-close {
    filter: brightness(0) invert(1) !important;
}

.modal-body {
    padding: 2rem !important;
}

.modal-footer {
    border-top: 1px solid rgba(25, 118, 210, 0.1) !important;
    padding: 1.5rem 2rem !important;
}

/* CARDS DA FROTA */
.modal-body .card {
    border: 1px solid rgba(25, 118, 210, 0.1) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

    .modal-body .card:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15) !important;
    }

.modal-body .card-img-top {
    border-radius: 12px 12px 0 0 !important;
}

.modal-body .card-title {
    font-size: 1.2rem !important;
    font-weight: 600 !important;
}

.modal-body .list-unstyled li {
    padding: 3px 0 !important;
    font-size: 0.9rem !important;
}