/* ============================================
   VARIÁVEIS DE COR
   ============================================ */
:root {
    --azul-escuro:  #00458f;
    --azul-medio:   #0151ae;
    --vermelho:     #e30000;
    --branco:       #ffffff;
}

/* ============================================
   GERAL
   ============================================ */
body {
    font-family: 'Montserrat', Arial, sans-serif !important;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
}

.container { max-width: 1200px; }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', Arial, sans-serif !important;
    font-weight: 700;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    background-color: var(--azul-escuro) !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
    background-color: #002d5e !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.navbar-nav .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 600;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--branco) !important;
}



/* Desktop */
.menu-social {
    display: flex;
    gap: 20px;
    color: #ffffff !important;
}

.menu-social a {
    /*color: var(--cor-link-menu);*/
    color: #ffffff !important;
    font-size: 20px;
    transition: all 0.3s ease;
}

.menu-social a:hover {
    color: #ccc !important;
    transform: translateY(-2px);
}



.div-geral {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    left: 30%;
    transform: translateX(-50%);
    color: #ffffff;
    max-width: 1000px;
}

/* Tablet */
@media (max-width: 768px) {
    .div-geral {
        gap: 12px;
        position: static;
        transform: none;
        order: 3;
        width: 100%;
        margin-top: 8px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .div-geral {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}





@media (max-width: 991px) {

    .menu-social {
        width: 100%;                 /* ocupa linha inteira */
        justify-content: center;     /* centraliza horizontal */
        margin-top: 10px;           /* espaço do menu */
        padding-bottom: 5px;
    }

    .menu-social {
        border-top: 1px solid rgba(255,255,255,0.2);
        padding-top: 12px;
    }

}

/* ============================================
   SEÇÕES ALTERNADAS
   ============================================ */

/* Seção azul — título branco */
.section-azul {
    background-color: var(--azul-medio);
    color: var(--branco);
}
.section-azul h2 {
    color: var(--branco);
    font-size: 30px;
    font-weight: 700;
}
.section-azul p,
.section-azul li {
    color: rgba(255,255,255,0.9);
}
.section-azul .product-item ul li::before {
    color: #7ecfff;
}

/* Seção branca — título azul */
.section-branca {
    background-color: var(--branco);
    color: #333;
}
.section-branca h2 {
    color: var(--azul-escuro);
    font-size: 30px;
    font-weight: 700;
}
.section-branca h3 {
    color: var(--azul-medio);
}

/* Títulos h2 gerais */
h2 {
    font-size: 30px !important;
    font-weight: 700 !important;
}

/* Títulos h3 dos produtos */
.product-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--azul-escuro);
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}
.product-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--vermelho);
    transition: width 0.6s ease 0.4s;
}
.product-item h3.line-visible::after {
    width: 100%;
}

/* H3 em seção azul */
.section-azul .product-item h3 {
    color: var(--branco);
}
.section-azul .product-item h3::after {
    background-color: var(--vermelho);
}

/* ============================================
   Titlo
   ============================================ */
.titulo-section { margin-top: 60px !important; margin-bottom: -100px;}

/* ============================================
   PRODUTOS
   ============================================ */
.product-section { margin-top: 20px !important; }

.product-item { margin-bottom: 60px; }

.product-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.product-item img:hover {
    transform: scale(1.04);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2) !important;
}

.product-item ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}
.product-item ul li {
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
}
.product-item ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--azul-medio);
    position: absolute;
    left: 0;
    top: 1px;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Botão vermelho padrão */
.btn-danger,
.btn-primary {
    background-color: var(--vermelho) !important;
    border-color: var(--vermelho) !important;
    color: var(--branco) !important;
    border-radius: 50px;
    padding: 12px 30px;
}
.btn-danger:hover,
.btn-primary:hover {
    background-color: #c00000 !important;
    border-color: #c00000 !important;
}

/* Botão WhatsApp — verde mantido */
.btn-success {
    border-radius: 50px;
    padding: 10px 25px;
}

/* Botão warning — mantém amarelo mas arredonda */
.btn-warning {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 700;
}

/* ============================================
   CONTATO
   ============================================ */
#contato .form-control {
    border-radius: 0.5rem;
    padding: 1rem 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#contato .form-control:focus {
    border-color: var(--azul-medio);
    box-shadow: 0 0 0 0.2rem rgba(1,81,174,0.25);
}
#contato label {
    font-weight: 600;
    color: var(--azul-escuro);
}

/* ============================================
   FAQ
   ============================================ */
#faq { padding: 80px 0; }

.accordion-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-color: rgba(0,69,143,0.2);
}
.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
#faq .accordion-button {
    font-weight: 700;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--azul-escuro);
}
#faq .accordion-button:not(.collapsed) {
    background-color: var(--azul-escuro);
    color: var(--branco);
}
#faq .accordion-button:focus {
    box-shadow: none;
}

/* ============================================
   DEPOIMENTOS
   ============================================ */
#depoimentos {
    background-color: var(--azul-escuro) !important;
}
#depoimentos h2 {
    color: var(--branco);
    font-size: 30px;
    font-weight: 700;
}
#depoimentos .carousel-inner {
    min-height: 180px;
}
#depoimentos .carousel-item {
    padding: 40px 10%;
}
#depoimentos .carousel-item p.lead {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
}
#depoimentos .carousel-item p.fw-bold {
    color: var(--branco);
}
#depoimentos .carousel-control-prev-icon,
#depoimentos .carousel-control-next-icon {
    background-color: rgba(255,255,255,0.4);
    border-radius: 50%;
    padding: 15px;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    background-color: var(--azul-medio);
}
.cta-final h2 {
    color: var(--branco);
    font-size: 30px;
    font-weight: 700;
}

/* ============================================
   RODAPÉ
   ============================================ */
footer {
    background-color: #002d5e !important;
    color: #f8f9fa;
}
footer h5 {
    color: var(--branco);
    font-weight: 700;
}
footer .social-icons a {
    transition: color 0.3s ease;
}
footer .social-icons a:hover {
    color: var(--vermelho) !important;
}

/* ============================================
   SCROLL MARGIN — compensa navbar fixa
   ============================================ */
section[id] {
    scroll-margin-top: 70px;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up-anim    { transform: translateY(60px); }
.slide-in-left-anim  { transform: translateX(-150px); }
.slide-in-right-anim { transform: translateX(150px); }
.zoom-in-anim       { transform: scale(0.75); }

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.30s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.60s; }
.delay-5 { transition-delay: 0.75s; }

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 767.98px) {

    h2 { font-size: 24px !important; }

    .slide-in-left-anim,
    .slide-in-right-anim { transform: translateY(40px); }

    #depoimentos .carousel-item {
        padding: 20px 5%;
    }
    #depoimentos .carousel-item p.lead { font-size: 1rem; }
}

