/* Global Styles */
/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Navbar */
.navbar {
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    font-weight: bold;
}

/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #fff;
    transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        display: flex;
        flex-direction: column;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    /* Show menu when active */
    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* Hero Section */
.hero {
    position: relative;
    background: url('https://api.blue.cc/uploads/cm7wl3xql00jp2lti3focdaz7/como-recorrer-de-multa-bafometro-sp.jpg') center/cover no-repeat;
    height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: #fff;
    padding-top: 80px;
    z-index: 1;
}

/* Background Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
    z-index: -1;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
}

.hero-text {
    max-width: 50%;
}

.hero-text h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn:hover {
    background: #e65c00;
}

/* Hero Image */
.hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image img {
        max-width: 80%;
    }

    .nav-links {
        display: none; /* Hide navbar links on smaller screens (add mobile menu if needed) */
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-image {
        display: none; /* Hides the image on smaller screens */
    }

    .nav-links {
        display: none; /* Hide navbar links on smaller screens (add mobile menu if needed) */
    }
}


/* Full-Width Section */
.full-width-section {
    width: 100%;
    /* background: linear-gradient(135deg, #ffffff 0%, #2a5298 100%); */
    color: #070707;
    padding: 30px 10px;
    display: flex;
    justify-content: left;
    align-items: left;
    text-align: left;
}

.section-content {
    max-width: 800px;
}

.section-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.btn {
    display: inline-block;
    background: #ff6600;
    color: #fff;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.btn:hover {
    background: #e65c00;
}

/* Responsive */
@media (max-width: 768px) {
    .section-content h2 {
        font-size: 28px;
    }

    .section-content p {
        font-size: 16px;
    }
}


/* Seção de Serviços (Vertical) */
.services {
    width: 100%;
    padding: 60px 20px;
    background: #f9f9f9;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    font-weight: bold;
}

.service-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-box h3 {
    font-size: 20px;
    color: #ff6600;
    margin-bottom: 10px;
    font-weight: bold;
}

.service-box p {
    font-size: 16px;
    color: #555;
}

/* Responsivo */
@media (max-width: 768px) {
    .services h2 {
        font-size: 24px;
    }

    .service-box h3 {
        font-size: 18px;
    }

    .service-box p {
        font-size: 14px;
    }
}

.services {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-5px);
}

.service-box h3 {
    margin-bottom: 10px;
    font-size: 1.5em;
}

.service-box p {
    font-size: 1em;
    color: #555;
}

@media (max-width: 768px) {
    .services h2 {
        font-size: 2em;
    }
}


/* Section with Left Image - Right Text */
.section-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    gap: 20px;
}

.section-image {
    flex: 1;
    max-width: 50%;
}

.section-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.section-text {
    flex: 1;
    max-width: 50%;
}

.section-text h2 {
    color: #0d0c0c;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.section-text p {
    font-size: 16px;
    color: #0e0e0e;
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }

    .section-image,
    .section-text {
        max-width: 100%;
    }
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.whatsapp-button:hover {
    background-color: #1EBE5D; /* Slightly darker green */
}
