/* --- VARIÁVEIS E RESET --- */
:root {
    --primary-color: #004aad;
    /* Azul Royal - Confiança e Profissionalismo */
    --primary-dark: #003380;
    --accent-color: #00c2cb;
    /* Ciano - Higiene e Modernidade */
    --text-color: #2c3e50;
    --light-bg: #f4f7f6;
    --white: #ffffff;
    --grey: #bdc3c7;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- UTILITÁRIOS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

h1,
h2,
h3,
h4 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: var(--accent-color);
    margin: 10px auto 0;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 4px;
}

.btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 173, 0.3);
}

.btn-alt {
    background: transparent;
    border: 2px solid var(--white);
}

.btn-alt:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* --- HEADER & NAV --- */
header {
    background: var(--white);
    height: 90px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Oswald', sans-serif;
}

.logo i {
    color: var(--accent-color);
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.6)), url('https://images.unsplash.com/photo-1629909615184-74f495363b63?q=80&w=2069&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    margin-top: 90px;
    /* Compensa o header fixo */
}

.hero-content {
    max-width: 600px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
    animation: slideInLeft 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

/* --- CARDS INFORMATIVOS --- */
.info-cards {
    transform: translateY(-50px);
    position: relative;
    z-index: 10;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    /* Sem gap para visual unido */
}

.card {
    padding: 40px;
    color: var(--white);
    transition: transform 0.3s;
}

.card-1 {
    background: var(--primary-color);
}

.card-2 {
    background: var(--primary-dark);
}

.card-3 {
    background: var(--accent-color);
}

.card:hover {
    transform: translateY(-10px);
    z-index: 2;
}

.card h3 {
    color: var(--white);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* --- SOBRE (Grid) --- */
.about {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: var(--accent-color);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i {
    color: var(--accent-color);
}

/* --- SERVIÇOS (Grid Moderno) --- */
.services {
    background-color: var(--light-bg);
}

.services-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.service-box {
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.service-box:hover {
    border-bottom-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(0, 203, 203, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: 0.3s;
}

.service-box:hover .icon-box {
    background: var(--primary-color);
    color: var(--white);
}

.service-box h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* --- CTA STRIP --- */
.cta-section {
    background: var(--primary-dark);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

/* --- CONTATO & MAPA --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    box-shadow: var(--shadow);
    background: var(--white);
}

.contact-info {
    background: #2c3e50;
    color: var(--white);
    padding: 50px;
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-row i {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-right: 15px;
    margin-top: 5px;
}

.map-frame {
    position: relative;
    height: 100%;
    min-height: 400px;
    background: #ddd;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER --- */
footer {
    background: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 20px;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.bottom-bar {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #7f8c8d;
}

/* --- ANIMAÇÕES --- */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .map-frame {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: circle(0% at 100% 0);
        transition: clip-path 0.5s ease-in-out;
    }

    .nav-menu.active {
        clip-path: circle(150% at 100% 0);
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content {
        border-left: none;
        border-top: 5px solid var(--primary-color);
    }

    .info-cards {
        transform: translateY(0);
        margin-top: 30px;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}