/* =============================
    Reset e Configurações Gerais
============================= */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;    
    font-family: 'Arial', sans-serif;    
}

body {
    line-height: 1.6;
    background-color: #f7f7f7;
}

a {
    text-decoration: none;
    color: inherit;
}

.responsive-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.btn-action {
    display: inline-block;
    background-color: #004d99;    
    color: #ffffff;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-action:hover {
    background-color: #003366;
}

/* =============================
    Header e Navegação (TOPO DO SITE)
============================= */

.main-header {
    background-color: #ffffff;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    margin: 0 auto;    
}

.logo-img {
    max-height: 55px;    
    width: auto;
    max-width: 100%;    
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav ul li a {
    padding: 10px 15px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: #004d99;
}

/* =============================
    Seção Hero (Banner Principal)    
============================= */

.hero-section {
    height: 60vh;    
    max-height: 550px;    
    min-height: 350px;    
    
    background: url('../img/banner-bg.png') no-repeat center center/cover;    
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;    
    position: relative;    
    overflow: hidden;    
}

/* Overlay para garantir a legibilidade do texto */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);    
    z-index: 1;    
}

.hero-content {
    padding: 40px;
    border-radius: 10px;
    max-width: 700px;    
    position: relative;    
    z-index: 2;    
}

.hero-section h1 {
    font-size: 2.5em;    
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p {
    font-size: 1em;    
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}


/* =============================
    Carrossel de Serviços    
============================= */

.services-carousel-section {
    padding: 40px 0 60px;    
    text-align: center;
    background-color: #f9f9f9;    
    max-width: 100%;    
    margin: 0 auto;
}

.services-carousel-section h2 {
    font-size: 2.2em;
    color: #333;
    margin-bottom: 40px;
}

.swiper {
    width: 95%;    
    max-width: 1400px;    
    height: auto;
    padding: 20px 0;
}

.swiper-slide {
    height: auto;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-image-container {
    width: 100%;
    height: 180px;    
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;    
    transition: transform 0.3s ease;
}

.service-card:hover .service-image-container img {
    transform: scale(1.05);
}

.service-details {
    padding: 20px;
    text-align: left;
    flex-grow: 1;    
}

.service-details h3 {
    color: #004d99;
    font-size: 1.3em;
    margin-bottom: 10px;
}

.service-details p {
    color: #555;
    font-size: 0.95em;
    margin-bottom: 15px;
}

.service-price {
    display: block;
    font-weight: bold;
    color: #e94e77;    
    font-size: 1.1em;
    margin-top: auto;    
}

/* Navegação do Swiper */
.swiper-button-next, .swiper-button-prev {
    color: #004d99;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    transition: background-color 0.3s;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: #ffffff;
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.2rem;
}

.swiper-pagination-bullet-active {
    background: #004d99;
}


/* =============================
    Seção Sobre Nós
============================= */

.about-us-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-us-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-content {
    flex: 1.5;
}

.about-content h2 {
    font-size: 2.5em;
    color: #004d99;
    margin-bottom: 30px;
}

.about-content h3 {
    font-size: 1.5em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

.about-content p {
    color: #555;
    margin-bottom: 15px;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    margin: 30px 0;
    gap: 20px;
}

.stat-item {
    text-align: center;
    flex: 1;
    padding: 10px;
    border-radius: 8px;
    background-color: #f1f1f1;
}

.stat-item strong {
    display: block;
    font-size: 2em;
    color: #e94e77;
    margin-bottom: 5px;
}

.stat-item p {
    margin: 0;
    font-size: 0.9em;
    color: #555;
}


/* =============================
    Seção de Contato (Sem Formulário)
============================= */

.contact-section {
    padding: 80px 20px;
    background-color: #f7f7f7;    
    text-align: center;
}

.contact-section h2 {
    margin-bottom: 50px;
    font-size: 2.2em;
    color: #333;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;    
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-col h3,
.contact-info-col h3 {
    color: #004d99;
    margin-bottom: 25px;
    font-size: 1.5em;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

/* REGRAS DO FORMULÁRIO REMOVIDAS:
    .simple-form input[type="text"],
    .simple-form input[type="email"],
    .simple-form input[type="tel"],
    .simple-form textarea { ... }
    .simple-form textarea { ... }
*/

/* Estilização das Informações de Contato */
.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #555;
}

.info-item i {
    color: #e94e77;    
    margin-right: 15px;
    font-size: 1.3em;
    min-width: 25px;    
}

.map-placeholder {
    height: 250px;
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* =============================
    Rodapé (Footer)
============================= */

.main-footer {
    background-color: #003366;    
    color: #ffffff;
    padding-top: 40px;
    padding-bottom: 15px;
    line-height: 1.5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 30px;
    flex-wrap: wrap;    
}

.footer-col {
    width: 25%;    
    padding: 0 15px;
    min-width: 250px;    
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 1.15em;
    margin-bottom: 20px;
    color: #e94e77;    
    position: relative;
}

.footer-col p,
.footer-col ul li {
    color: #ccc;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li a {
    color: #ccc;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s;
    font-size: 0.9em;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
}

.footer-logo-center {
    margin-bottom: 10px;
}

.logo-footer-img {
    max-height: 50px;
    filter: none;
}

.footer-bottom p {
    font-size: 0.8em;
    color: #ccc;
    margin: 0;
}

.social-icons {
    margin-top: 15px;
    margin-bottom: 15px;
}

.social-icons a {
    display: inline-block;
    color: #ffffff;
    font-size: 1.4em;
    margin-right: 12px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #e94e77;
}

.footer-contact-info {
    font-size: 0.85em;
    margin-top: 10px;
    color: #ccc;
}

.btn-footer {
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

/* =============================
    Botão Flutuante (WhatsApp)
============================= */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Efeito de Pulso */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* =============================
    Responsividade Geral (AJUSTES FINAIS DE QUEBRA DE TELA)
============================= */
@media (max-width: 1024px) {
    
    /* Header (Tablet) */
    .main-header {
        padding: 15px 20px;
    }
    .logo-img {
        max-height: 50px;    
    }
    .main-nav ul li a {
        padding: 10px 10px;
        font-size: 0.9em;    
    }

    /* Hero (Tablet) */
    .hero-section {
        height: 50vh;    
        max-height: 450px;    
    }
    .hero-section h1 {
        font-size: 2em;    
    }
    
    /* Sobre Nós (Tablet) */
    .about-us-container {
        flex-direction: column;
        text-align: center;
    }
    .about-image {
        min-width: 100%;
        max-width: 500px;
    }
    .about-content {
        text-align: center;
    }
    .stats-grid {
        justify-content: center;
    }
    
    /* Contato (Tablet) */
    .contact-grid {
        grid-template-columns: 1fr;    
        gap: 30px;
        text-align: center;
    }
    .contact-info-col h3, .contact-form-col h3 {
        text-align: center;
    }
    .info-item {
        justify-content: center;
    }

    /* Rodapé (Tablet) */
    .footer-content {
        padding-bottom: 20px;
    }
    .footer-col {
        min-width: 200px;
        width: 50%;
        margin-bottom: 20px;
        text-align: left;
    }
    .footer-col:nth-child(2n+1) {
        padding-left: 20px;
    }
    .footer-col:nth-child(2n) {
        padding-right: 20px;
    }
    .social-icons, .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 768px) {
    
    /* Header (Mobile) */
    .main-header {
        flex-direction: column;
        padding: 15px;
    }
    .logo-img {
        max-height: 45px;    
        margin-bottom: 10px;    
    }
    .main-nav {
        width: 100%;
    }
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .main-nav ul li a {
        font-size: 0.75em;    
        padding: 6px 6px;    
    }

    /* Hero (Mobile) */
    .hero-section {
        height: 40vh;    
        max-height: 350px;    
    }
    .hero-section h1 {
        font-size: 1.6em;    
    }
    .hero-section p {
        font-size: 0.8em;
    }
    .btn-action {
        padding: 10px 20px;
        font-size: 0.85em;
    }

    /* Rodapé (Mobile) */
    .footer-content {
        flex-direction: column;
        padding: 0 15px 20px;
    }
    .footer-col {
        width: 100%;
        text-align: center;
        padding: 0 5px;
    }
    /* Limpar paddings específicos de tablet */
    .footer-col:nth-child(2n+1), .footer-col:nth-child(2n) {
        padding-left: 5px;
        padding-right: 5px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}