/* --- RESET E CONFIGURAÇÕES GLOBAIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* --- VARIÁVEIS DE COR --- */
:root {
    --dark-blue: #0b1b38;
    --light-blue: #0a66c2;
    --light-gray: #f8f9fa;
    --primary-text: #333333;
    --secondary-text: #666666;
    --white: #ffffff;
    --whatsapp-green: #25d366;
}

/* --- ANIMAÇÕES GLOBAIS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease-out;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease-out;
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* --- TOP BAR (PRETA) --- */
.top-bar {
    background-color: #000000;
    color: #cccccc;
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid #222;
}

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

.top-bar .left-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar .left-contacts span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar .left-contacts i {
    font-size: 14px;
}

.top-bar .left-contacts .fa-whatsapp {
    color: var(--whatsapp-green);
}

.top-bar .left-contacts a {
    color: #cccccc;
}

.top-bar .left-contacts a:hover {
    color: #ffffff;
}

/* --- NAVEGAÇÃO --- */
header {
    background-color: var(--white);
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    height: 90px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 75px;
}

.logo-icon {
    font-size: 28px;
    color: var(--light-blue);
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--dark-blue);
}

.logo-text span {
    color: var(--light-blue);
}

.logo-area img, .footer-logo-area img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    color: var(--primary-text);
    font-size: 15px;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--light-blue);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--light-blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-cta {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.btn-cta:hover {
    background-color: var(--light-blue);
    color: var(--white);
}

/* --- MENU HAMBURGUER --- */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--dark-blue);
}

/* --- HERO CARROSSEL --- */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background-color: var(--dark-blue);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
}

.slide.active {
    opacity: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5);
    animation: zoomBg 20s infinite alternate ease-in-out;
}

@keyframes zoomBg {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.slide-content h1 span {
    color: var(--light-blue);
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #d1d9e6;
}

.btn-primary {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
}

.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--light-blue);
    transform: scale(1.2);
}

.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}

.prev:hover,
.next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* --- SEÇÕES GERAIS --- */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 18px;
}

/* --- SOBRE NÓS --- */
.sobre {
    background-color: var(--light-gray);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.sobre-texto h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

.sobre-texto p {
    color: var(--secondary-text);
    margin-bottom: 15px;
}

.valores-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.valor-item {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--light-blue);
    transition: all 0.3s;
}

.valor-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.valor-item h4 {
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--dark-blue);
}

.valor-item p {
    font-size: 14px;
    color: #666;
}

.sobre-mvv {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.sobre-mvv h3 {
    color: var(--dark-blue);
    margin-bottom: 20px;
    font-size: 24px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.mvv-item {
    margin-bottom: 20px;
}

.mvv-item h4 {
    color: var(--light-blue);
    font-weight: 700;
    margin-bottom: 5px;
}

.mvv-item p {
    color: #555;
    font-size: 15px;
}

/* --- SERVIÇOS --- */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.servico-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s;
    text-align: center;
}

.servico-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--light-blue);
}

.servico-card i {
    font-size: 40px;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.servico-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.servico-card p {
    color: #666;
    font-size: 15px;
}

/* --- PRODUTOS --- */
.produtos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    text-align: center;
}

.produto-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.produto-item:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--light-blue);
}

.produto-item .logo-placeholder {
    width: 100%;
    height: 80px;
    background: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    border-radius: 5px;
    font-weight: bold;
}

.produto-item .logo-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.produto-item h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.produto-item p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
}

.btn-produto {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
}

.btn-produto:hover {
    background-color: var(--dark-blue);
}

/* --- CONTACTOS --- */
.contactos-section {
    padding: 80px 0;
    background: var(--white);
}

.contactos-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contactos-info h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.contactos-info p {
    color: var(--secondary-text);
    margin-bottom: 40px;
}

.contactos-lista {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contacto-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contacto-item .icone {
    background: var(--light-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contacto-item .detalhes h4 {
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 2px;
}

.contacto-item .detalhes p,
.contacto-item .detalhes a {
    color: var(--secondary-text);
    font-size: 15px;
}

.contacto-item .detalhes a:hover {
    color: var(--light-blue);
}

.contactos-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-blue);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: 0.3s;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--light-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background-color: var(--light-blue);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 102, 194, 0.4);
    background-color: #0854a0;
}

.mapa-container {
    margin-top: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    height: 300px;
    background: #f0f0f0;
}

.mapa-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- ESTILOS DAS PÁGINAS DE PRODUTOS --- */
.hero-produto {
    background: var(--dark-blue);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    height: 600px;
    background: linear-gradient(#0b1b3862), url('../imagens/hero.png') center/contain no-repeat;
     background-size: cover;
    background-position: center;
}

.hero-produto h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-produto h1 span {
    color: var(--light-blue);
}

.hero-produto p {
    font-size: 18px;
    color: #d1d9e6;
    max-width: 700px;
    margin: 0 auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
}

.feature-card i {
    font-size: 40px;
    color: var(--light-blue);
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark-blue);
}

.feature-card p {
    color: #666;
    font-size: 14px;
}

.vantagens-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vantagem-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--light-blue);
}

.vantagem-item h4 {
    color: var(--dark-blue);
    margin-bottom: 5px;
}

.vantagem-item p {
    color: #666;
    font-size: 14px;
}

.btn-demo {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
}

.btn-demo:hover {
    background-color: var(--dark-blue);
    transform: translateY(-2px);
}

.btn-back {
    background-color: var(--light-blue);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
}

.btn-back:hover {
    background-color: var(--dark-blue);
}

/* --- FOOTER --- */
footer {
    background-color: #222;
    color: #ccc;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-area i {
    font-size: 30px;
    color: var(--light-blue);
}

.footer-logo-area .logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-area .logo-text span {
    color: var(--light-blue);
}

.footer-logo-area img {
    width: 80px;
    height: 50px;
    object-fit: contain;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #aaa;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #aaa;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--light-blue);
    padding-left: 5px;
}

.footer-contactos li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 14px;
}

.footer-contactos li i {
    color: var(--light-blue);
    width: 20px;
}

.footer-contactos li a {
    color: #aaa;
}

.footer-contactos li a:hover {
    color: var(--light-blue);
}

.newsletter-form {
    display: flex;
    background: var(--white);
    border-radius: 50px;
    overflow: hidden;
    margin-top: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
}

.newsletter-form button {
    background-color: var(--light-blue);
    color: var(--white);
    border: none;
    padding: 0 25px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background-color: #0854a0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.footer-bottom span {
    color: var(--light-blue);
}

/* --- WHATSAPP FIXO --- */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background-color: var(--whatsapp-green);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.error-msg {
    color: #e3342f;
    font-size: 13px;
    margin-top: 4px;
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .servicos-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .hero-carousel {
        height: 400px;
    }

    .slide-content h1 {
        font-size: 32px;
    }

    .contactos-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .btn-cta {
        display: none;
    }

    .servicos-grid {
        grid-template-columns: 1fr;
    }

    .valores-list {
        grid-template-columns: 1fr;
    }

    .prev,
    .next {
        display: none;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contactos-form {
        padding: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
    }

    .footer-logo-area {
        justify-content: center;
    }

    .footer-contactos li {
        justify-content: center;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .vantagens-grid {
        grid-template-columns: 1fr !important;
    }
}
