/* Paleta de Cores do Logo VISION aaa */
:root {
    --color-dark-blue: #00071C;
    --color-gold: #B58C36;
    --color-light-gray: #C0C7CE;
    --color-medium-gray: #444C56;
    --color-white: #ffffff;
    --color-whatsapp-green: #25D366;
}

/* Import de fontes do Google */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Poppins:wght@300;400;600&display=swap');

/* Reset e Estilos Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-medium-gray);
    background-color: var(--color-white);
}

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

.section-modern {
    padding: 100px 0;
    text-align: center;
}

.section-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-modern h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2em;
    color: var(--color-dark-blue);
    margin-bottom: 50px;
    font-weight: 700;
}

.highlight {
    color: var(--color-gold);
}

.bg-dark-section {
    background-color: var(--color-dark-blue);
    color: var(--color-light-gray);
}
.bg-dark-section h2, .bg-dark-section p, .bg-dark-section strong {
    color: var(--color-light-gray);
}
.bg-dark-section .section-tagline {
    color: var(--color-gold);
}

.bg-light-section {
    background-color: #f0f2f5; 
}
.bg-light-section h2 {
    color: var(--color-dark-blue);
}

.bg-gold-section {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
}
.bg-gold-section h2, .bg-gold-section p {
    color: var(--color-dark-blue);
}
.bg-gold-section .section-tagline {
    color: var(--color-dark-blue);
}

.btn-primary-modern, .btn-secondary-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-primary-modern {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
}

.btn-primary-modern:hover {
    background-color: #A37C2F;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-secondary-modern {
    background-color: transparent;
    border: 2px solid var(--color-light-gray);
    color: var(--color-light-gray);
}

#sobre .btn-secondary-modern {
    border-color: var(--color-medium-gray);
    color: var(--color-medium-gray);
}

#sobre .btn-secondary-modern:hover {
    background-color: var(--color-dark-blue);
    color: var(--color-gold);
    border-color: var(--color-dark-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.btn-large-modern {
    padding: 22px 45px;
    font-size: 1.3em;
}

.main-header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: rgba(0, 7, 28, 0.9);
}

.main-header.scrolled {
    background-color: rgba(0, 7, 28, 0.95);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

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

.main-header .logo-img {
    max-height: 50px;
    transition: max-height 0.3s ease;
}

.main-header.scrolled .logo-img {
    max-height: 40px;
}

.main-nav .nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--color-light-gray);
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--color-gold);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--color-light-gray);
    margin: 5px;
    transition: all 0.3s ease;
}

.hero-modern {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-white);
    text-align: center;
    background: url("../images/zap.jpeg") no-repeat center center/cover;
}

.hero-overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 7, 28, 0.75);
    z-index: 1;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-content-modern .hero-subtitle {
    font-size: 1.1em;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--color-light-gray);
}

.hero-content-modern h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4.8em;
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 700;
    color: var(--color-white);
}

.hero-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap; /* Permite que os botões quebrem a linha em telas muito pequenas */
}

.section-about .container {
    display: flex;
    align-items: center;
    gap: 60px;
    text-align: left;
}

/* ... (demais estilos que já criamos) ... */

/* ESTILOS DA SEÇÃO DE AVALIAÇÕES (COM ROLAGEM) */
#avaliacoes {
    background-color: var(--color-white);
}
.caixa-avaliacoes {
    max-height: 500px; 
    overflow-y: auto; 
    background-color: var(--color-white);
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 10px 25px;
    text-align: left;
    margin-top: 60px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.05);
}
.comentario-card {
    padding: 20px 5px;
    border-bottom: 1px solid #e0e0e0; 
}
.comentario-card:last-child {
    border-bottom: none;
}
.comentario-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-dark-blue);
    font-size: 1.2em;
    margin-bottom: 5px;
}
.comentario-card .estrelas {
    color: var(--color-gold);
    margin-bottom: 10px;
}
.comentario-card p {
    color: var(--color-medium-gray);
    font-size: 1em;
    line-height: 1.7;
}
.caixa-avaliacoes::-webkit-scrollbar { width: 10px; }
.caixa-avaliacoes::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
.caixa-avaliacoes::-webkit-scrollbar-thumb { background: var(--color-dark-blue); border-radius: 10px; }
.caixa-avaliacoes::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

/* ... (demais estilos) ... */
.contact-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
    margin-top: 60px;
    align-items: center;
}
.contact-details p {
    margin-bottom: 20px;
    font-size: 1.1em;
    display: flex;
    align-items: flex-start;
    gap: 18px;
}
.contact-details p span {
    flex: 1;
}
.contact-details .icon-contact {
    font-size: 1.5em;
    color: var(--color-gold);
    flex-shrink: 0;
    width: 25px;
    text-align: center;
    margin-top: 3px;
}

/* (Copie e cole o restante do seu CSS aqui para manter tudo, ou use este arquivo completo) */
/* Eu incluí o resto do CSS abaixo para garantir */
.about-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 12px;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}
.service-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}
.service-card .icon-service {
    font-size: 3.5em;
    color: var(--color-gold);
    margin-bottom: 25px;
    display: block;
}
.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7em;
    color: var(--color-dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-top: 60px;
    text-align: left;
}
.benefit-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    background-color: rgba(192, 199, 206, 0.1);
    padding: 25px;
    border-radius: 8px;
}
.benefit-item-modern .benefit-icon-modern {
    font-size: 2.5em;
    color: var(--color-gold);
    flex-shrink: 0;
}
#videos .carousel {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    margin: 0 auto;
}
#videos .carousel-item,
#videos .carousel-inner {
    height: 100%;
    width: 100%;
}
#videos .carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    background-color: #000;
    cursor: pointer;
}
#videos .carousel-caption {
    background-color: rgba(0, 7, 28, 0.6);
    border-radius: 8px;
    padding: 15px 20px;
    bottom: 5%;
}
#videos .carousel-caption .caption-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-gold);
    font-weight: 700;
}
#videos .carousel-caption .caption-text {
    color: var(--color-white);
    font-size: 1em;
}
.carousel-control-prev,
.carousel-control-next {
    width: 8%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 7, 28, 0.5);
    border-radius: 50%;
    padding: 25px;
    background-size: 50% 50%;
}
.section-cta-final {
    background-color: var(--color-gold);
    color: var(--color-dark-blue);
    padding: 80px 0;
}
.section-cta-final h2 {
    color: var(--color-dark-blue);
    margin-bottom: 25px;
}
.section-cta-final p {
    font-size: 1.2em;
    margin-bottom: 40px;
    font-weight: 300;
}
.social-links-modern {
    margin-top: 35px;
    display: flex;
    gap: 25px;
}
.social-links-modern a {
    color: var(--color-dark-blue);
    font-size: 2em;
    transition: color 0.3s ease;
}
.social-links-modern a:hover {
    color: var(--color-gold);
}
.contact-map-modern {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.main-footer {
    background-color: var(--color-dark-blue);
    color: var(--color-light-gray);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}
.whatsapp-fixed a {
    display: flex;
    align-items: center;
    background-color: var(--color-whatsapp-green);
    color: var(--color-white);
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    gap: 10px;
}
.whatsapp-fixed a:hover {
    transform: translateY(-5px);
    background-color: #1DA851;
}
.whatsapp-fixed i {
    font-size: 1.5em;
}

/******************************************/
/*** ÁREA DE RESPONSIVIDADE ***/
/******************************************/

@media screen and (max-width: 992px) {
    .burger { display: block; }
    .main-nav {
        position: fixed;
        right: 0px; top: 0px;
        background-color: rgba(0, 7, 28, 0.98);
        width: 100%; height: 100vh;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        gap: 30px;
    }
    .main-nav .nav-links { flex-direction: column; align-items: center; }
    .main-nav .nav-links a { font-size: 1.5em; }
    .nav-active { transform: translateX(0%); }
    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
    
    .hero-content-modern h1 { font-size: 3.5em; }
    .section-modern h2 { font-size: 2.5em; }
    .section-about .container, .contact-grid-modern {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-about .about-content h2, .contact-details, .section-about .container {
        text-align: center;
    }
    .section-about .container {
        flex-direction: column;
    }
    .section-about .about-image { order: -1; margin-bottom: 40px; min-height: 300px; }
    .benefits-list { grid-template-columns: 1fr; }
    .benefit-item-modern { flex-direction: column; align-items: center; }
    .contact-details p, .social-links-modern { justify-content: center; }
}

@media screen and (max-width: 768px) {
    .hero-content-modern h1 { font-size: 2.8em; line-height: 1.2; }
    .section-modern h2 { font-size: 2.2em; }
    .btn-primary-modern, .btn-secondary-modern { padding: 15px 25px; font-size: 1em; }
    .btn-large-modern { padding: 18px 35px; font-size: 1.1em; }
    
    #videos .carousel {
        aspect-ratio: 9 / 16;
        max-width: 400px;
        max-height: 80vh;
    }
    #videos .carousel-caption { padding: 10px; }
    #videos .carousel-caption .caption-title { font-size: 1.2em; }
    #videos .carousel-caption .caption-text { font-size: 0.9em; }

    .whatsapp-fixed a { padding: 12px 20px; font-size: 1em; }
    .whatsapp-fixed i { font-size: 1.3em; }
    .contact-details p {
        flex-direction: row; align-items: center;
        justify-content: flex-start; text-align: left;
    }
    .contact-details p strong { display: inline; margin-right: 8px; }
    .contact-grid-modern { text-align: left; }
    .social-links-modern { justify-content: flex-start; }
}

@media screen and (max-width: 480px) {
    .hero-content-modern h1 { font-size: 2.2em; }
    .section-modern h2 { font-size: 2em; }
    .section-modern { padding: 80px 15px; }
    .container { padding: 0 15px; }
    .service-card { padding: 30px; }
    #videos .carousel { max-width: 90%; max-height: 75vh; }
    .whatsapp-fixed { bottom: 20px; right: 20px; }
}

/* ========================================================== */
/* ========= REGRA PARA ESCONDER BOTÃO DE LIGAR EM DESKTOP ========= */
/* ========================================================== */
@media screen and (min-width: 992px) {
    .hero-cta-buttons a[href^="tel:"] {
        display: none;
    }
}