/* ================================================= */
/* ESTILOS GERAIS E LAYOUT DA NAV                  */
/* ================================================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

/* Cores e Variáveis */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d; 
    --text-color: #333;
    --light-bg: #f8f9fa; 
}

section {
    padding: 80px 5%;
}

h2, h3 {
    color: var(--text-color);
    text-align: center;
    margin-bottom: 40px;
}

/* Nav Bar */
.navbar {
    display: flex; justify-content: space-between; align-items: center;
    background-color: #fff; padding: 10px 5%; color: white;
    position: sticky; top: 0; z-index: 100;
}

.logo img { height: 40px; width: auto; display: block; }
.menu-toggle { display: none; cursor: pointer; font-size: 24px; padding: 5px; background: none; border: none; color: #000; z-index: 20; }
.menu-list { list-style: none; margin: 0; padding: 0; display: flex; }
.menu-item { position: relative; margin-left: 20px; }
.menu-item a { color: #0097b2; text-decoration: none; padding: 10px 15px; display: block; font-weight: bold; }
.menu-item a:hover { background-color: #e0e0e0; border-radius: 4px; }

.submenu {
    display: none; position: absolute; top: 100%; right: 0; left: auto;
    background-color: #fff; min-width: 200px; z-index: 10;
    list-style: none; padding: 0; margin: 0; border-radius: 0 0 4px 4px;
}
.submenu-item a { padding: 10px 15px; color: #0097b2; display: block; text-decoration: none; }
.submenu-item a:hover { background-color: #e0e0e0; }
.menu-item:hover .submenu { display: block; }

/* Estilos Responsivos da Nav */
@media screen and (max-width: 768px) {
    .menu-toggle { display: block; }
    .menu-list { 
        display: none; flex-direction: column; width: 100%;
        position: absolute; top: 60px; left: 0; background-color: #fff; 
    }
    .menu-item { margin-left: 0; border-top: 1px solid #fff; width: 100%; }
    .submenu { position: static; background-color: #fff; border-radius: 0; min-width: 100%; }
    .menu-item:hover .submenu { display: block; }
    .menu-list.active { display: flex; }
}


/* ================================================= */
/* 1. SEÇÃO HERO (Imagem de Fundo)                   */
/* ================================================= */
.hero {
    position: relative;
    background: url('../img1.webp') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center; 
    justify-content: center; 
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); 
}

.hero-content {
    position: relative; 
    max-width: 800px; 
    padding: 20px;
    z-index: 2;
    width: 100%; 
    display: flex;
    flex-direction: column; 
    text-align: left; 
}

.hero-content h1,
.hero-content p {
    text-align: left; 
}

.hero-content h1{
    font-size: 40px;
}
.hero-content p{
    font-size: 20px;
    
}

.hero-actions {
    display: flex;
    justify-content: flex-start; 
    width: 100%; 
    margin-top: 1px; 
}

.btn-rounded {
    background-color: #0097b2;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border: none;
    border-radius: 50px; 
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    
    /* ADICIONA O EFEITO DE PULSAÇÃO */
    animation: pulse 2s infinite; 
}

/* Opcional: Remova a animação ao passar o mouse */
.btn-rounded:hover {
    background-color: #0056b3;
    animation: none; /* Opcional: Para o botão quando o usuário interage */
}

/* ================================================= */
/* 2. SEÇÃO SOBRE NÓS (Círculos)                     */
/* ================================================= */
.about-section h2{
    text-align: left;
    font-size: 40px;
    color: #0097b2;
}
.about-text {
    width: 100%;  
    text-align: left; 
    line-height: 1.6;    
    font-size: 20px;
    margin: 0 0 50px 0; 
}


.circles-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 30px;
}

.circle-item {
    text-align: center;
    flex: 0 0 calc(33% - 40px); 
    max-width: 250px;
}

.circle-icon {
    width: 120px;
    height: 120px;
    background-color: var(--light-bg);
    border: 3px solid #0097b2;
    border-radius: 50%; 
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.circle-icon img, .circle-icon i {
    width: 100px; 
    height: 100px;
    object-fit: contain; 
    color: var(--primary-color); 
    font-size: 40px;
}

.circle-item h4 {
    margin-top: 10px;
    font-size: 1.1em;
    color: #0097b2;
}

@media screen and (max-width: 768px) {
    .circles-container {
        flex-direction: column;
        align-items: center;
    }
    .circle-item {
        flex: 0 0 100%;
    }
}

/* ================================================= */
/* 3. SEÇÃO NOSSOS SERVIÇOS (Carrossel e Paralelogramo) */
/* ================================================= */
.services-section h2{
    color: #0097b2;
    font-size: 40px;
    font-weight: bold;
    text-align: left;
}
.services-section {
    background-color: var(--light-bg); 
    text-align: center;
}

.carousel-container {
    overflow: hidden; 
    position: relative;
    margin: 0 auto;
    max-width: 1200px; 
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out; 
}

.carousel-item {
    flex: 0 0 33.33%; 
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.parallelogram-card {
    background-color: #000;
    padding: 60px 30px; 
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: skewX(-5deg); 
    margin: 0 10px; 
}

.parallelogram-content {
    transform: skewX(5deg); 
    text-align: left;
}

.parallelogram-content h4 {
    text-align: left;
    margin-top: 0;
    color: #fff;
    font-weight: bold;
}
.parallelogram-content p {
    text-align: left;
    color: #fff;
    margin-bottom: 30px;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #0097b2;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 50;
    border-radius: 50%;
}

.carousel-nav-btn.prev { left: 1px; }
.carousel-nav-btn.next { right: 1px; }

@media screen and (max-width: 992px) {
    .carousel-item {
        flex: 0 0 50%; /* 2 itens visíveis em tablet */
    }
}

@media screen and (max-width: 768px) {
    .carousel-item {
        flex: 0 0 100%; /* 1 item visível em mobile */
    }
}

/* ================================================= */
/* 4. SEÇÕES DE CONTEÚDO (Branco)                    */
/* ================================================= */

/* Estilos Gerais para as Seções */
.content-section {
    display: flex; /* Para alinhar o conteúdo (imagem e texto) lado a lado */
    align-items: center; /* Alinha verticalmente o centro */
    padding: 60px 40px;
    margin-bottom: 40px;
    background-color: #f8f8f8; 
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden; 
    position: relative;
    gap: 40px; 
}

.content-section:nth-child(even) { 
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 2.5em;
    color: #004d40; 
    margin-bottom: 25px;
    font-weight: 700;
}

.content-section p {
    font-size: 1.1em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.content-section .pontos-chave {
    font-weight: bold;
    color: #00796b; 
    margin-top: 30px;
    margin-bottom: 10px;
}

.content-section ul {
    list-style: none; 
    padding-left: 0;
}

.content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1em;
    color: #555;
}

.content-section ul li::before {
    content: '✓'; 
    color: #00796b;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* CONTAINER DA IMAGEM - NOVO ESTILO (Retângulo com Canto Arredondado) */
.image-container {
    flex: 0 0 auto;
    width: 400px;
    height: 300px; 
    position: relative;
    overflow: hidden; 
    /* Adiciona uma sombra para destacar a figura */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2); 
    border-radius: 12px; /* Cantos arredondados */
    /* opcional: pode usar clip-path para formas mais complexas, como um octógono */
    /* clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); */ 
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

/* Conteúdo de Texto */
.text-content {
    flex: 1; 
    padding-right: 20px; 
}

/* Media Queries para Responsividade */
@media (max-width: 992px) {
    .content-section {
        flex-direction: column; 
        padding: 40px 20px;
        text-align: center;
        gap: 20px;
    }

    .image-container {
        width: 100%; 
        height: 250px; 
        box-shadow: none; /* Remove a sombra em mobile */
    }

    .content-section ul {
        text-align: left; 
        margin: 0 auto;
        max-width: 500px; 
    }

    .text-content {
        padding-right: 0;
    }

    .content-section h2 {
        font-size: 2em;
    }
}
.content-section {
    background-color: #fff;
    padding: 60px 5%;
    border-bottom: 1px solid #eee;
}

.content-section h2 {
    text-align: left;
    margin-bottom: 20px;
    color: #0097b2;
    font-size: 40px;
}

.content-section p {
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.pontos-chave {
    font-weight: bold;
    margin-top: 20px;
    color: #000;
}

.pontos-chave + ul {
    list-style-type: none;
    padding-left: 0;
}

.pontos-chave + ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.pontos-chave + ul li::before {
    content: "•";
    color: #0097b2;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 0;
}


/* ================================================= */
/* 5. SEÇÃO DE ORÇAMENTO (Formulário)                */
/* ================================================= */
.quote-section {
    background-color: var(--light-bg);
    text-align: center;
    
}
.quote-section h2{
    font-size: 40px;
    font-weight: bold;
}
.destaque-orcamento{
    color: #0097b2;
    font-size: 40px;
    font-weight: bold;
}

.quote-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 15px; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.quote-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.quote-form input, .quote-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-sizing: border-box; 
}

.quote-form textarea {
    resize: vertical;
}

.quote-form button {
    width: 100%;
    padding: 15px;
    border-radius: 50px; 
    font-size: 1.1em;
    margin-top: 10px;
}

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

.quote-form input, .quote-form textarea {
    margin-bottom: 0; 
}

.form-grid > div {
    margin-bottom: 20px; 
}


@media screen and (max-width: 600px) {
    .form-grid {

        grid-template-columns: 1fr;
    }
}

/* ================================================= */
/* 6. RODAPÉ (Footer)                                */
/* ================================================= */
.footer-bottom {
    width: 100%;
    text-align: left;
    padding-top: 10px; 
    margin-top: 0;  
    border-top: none;
    font-size: 0.75em; 
    opacity: 0.7;   
}

.footer {
    flex-direction: row;
    flex-wrap: wrap; 
    background-color: #e0e0e0;
    color: #000;
    padding: 40px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 300px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px; 
    margin-right: 20px;
}

.divider {
    height: 60px;
    width: 2px;
    background-color: black;
    margin-right: 20px;
}

.footer-info-area {
    flex: 2;
    min-width: 300px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-direction: column;
}

.footer-column h4 {
    color: #000;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.1em;
    text-align: left;
}

.footer-column p {
    margin: 5px 0;
    font-size: 0.9em;
}

.footer-telemetria a {
    color: #000;
    text-decoration: none;
    cursor: not-allowed; 
    opacity: 0.7;
    display: block;
    margin-top: 10px;
}

/* ================================================= */
/* ESTILO DO BOTÃO FLUTUANTE WHATSAPP (FIXO E PULSANTE) */
/* ================================================= */

.whatsapp-float {
    position: fixed; 
    bottom: 20px; 
    right: 20px;  
    width: 60px;
    height: 60px;
    line-height: 60px; 
    background-color: #25d366; 
    color: white;
    text-align: center;
    border-radius: 50%; 
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4);
    z-index: 9999; 
    font-size: 28px;
    transition: background-color 0.3s ease;
    
    /* CHAVE PARA O EFEITO DE PISCAR */
    animation: pulse 2s infinite; 
}

.whatsapp-float:hover {
    background-color: #128c7e; 
    animation: none; /* Para o efeito de piscar quando o mouse está em cima */
}

/* ------------------------------------------------- */
/* KEYFRAMES PARA O EFEITO DE PISCAR/PULSAR (SUAVE)  */
/* ------------------------------------------------- */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        /* Cria um círculo que se expande */
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); 
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* ================================================= */
/* ESTILO DO BALÃO DE TEXTO ("Fale Conosco")         */
/* ================================================= */

.whatsapp-float .whatsapp-text {
    /* Posição em relação ao elemento pai (.whatsapp-float) */
    position: absolute;
    right: 70px; /* Distância do botão */
    top: 50%;
    transform: translateY(-50%); /* Centraliza verticalmente */
    
    /* Aparência */
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    white-space: nowrap; /* Mantém o texto em uma linha */
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    
    /* Esconde o balão por padrão */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

/* Triângulo (Seta) do Balão */
.whatsapp-float .whatsapp-text::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px; /* Posição para apontar para o botão */
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background-color: white;
    box-shadow: 1px -1px 1px rgba(0, 0, 0, 0.1);
}

/* Mostra o balão ao passar o mouse */
.whatsapp-float:hover .whatsapp-text {
    opacity: 1;
    visibility: visible;
}

@media screen and (max-width: 768px) {
    .footer { flex-direction: column; text-align: center; }
    .footer-logo-area { flex-direction: column; align-items: center; margin-bottom: 30px; }
    .divider { display: none; }
    .footer-logo img { margin-right: 0; margin-bottom: 15px; }
    .footer-info-area { justify-content: center; text-align: center; }
    .footer-column h4 { text-align: center; }
}