* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #172a1d;
    --accent-green: #4a7c59;
    --light-green: #e8f5e8;
    --dark-gray: #2c2c2c;
    --light-gray: #f8f9fa;
    --text-color: #333;
    --white: #ffffff;
    --black: #000;
    --text-cotacao: #737373
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

/* Navigation */
nav {
    background: var(--white);
    /* padding: 1rem 0; */
    width: 100%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 7rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--accent-green);
}

.nav-links a.active {
    font-weight: bold;
    color: #0074c8;
    border-bottom: 2px solid #0074c8;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle img {
    height: 32px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icons img {
    width: 2rem;
}

/* Hero Section */
.hero {
    /* background: var(--light-gray); */
    color: var(--black);
    padding: 0 0 1.875rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.cta-button {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease 0.4s both;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Services Section */
.services {
    padding: 100px 0;
    background:#f8f9fa;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

/* Services Header */
.services-header {
    text-align: center;
    /* margin-bottom: 4rem; */
}

.services-header .section-title {
    font-size: 3.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    font-weight: 700;
}

.title-accent {
    color: var(--accent-green);
}

.services-tagline {
    color: #666;
    font-size: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 4rem;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    min-width: calc(33.333% - 1.33rem);
    max-width: calc(33.333% - 1.33rem);
    flex: 0 0 calc(33.333% - 1.33rem);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

/* Carrossel de Serviços - Responsividade */
.services-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4,.2,.2,1);
    gap: 2rem;
    width: 100%;
}

/* 2 cards por slide em tablets */
@media (max-width: 900px) {
    .services-carousel-track {
        gap: 1rem;
    }
    .service-card {
        min-width: calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        flex: 0 0 calc(50% - 0.5rem);
    }
}

/* 1 card por slide em celulares */
@media (max-width: 600px) {
    .services-carousel-track {
        gap: 0.5rem;
    }
    .service-card {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    .services-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
}

.service-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.image-placeholder {
    color: #999;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #e0e0e0;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Service Card Variants */
.service-card-1 {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
}

.service-card-1:hover {
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdf4 100%);
}

.service-card-2 {
    background: linear-gradient(135deg, #ffffff 0%, #fef7ff 100%);
}

.service-card-2:hover {
    background: linear-gradient(135deg, #fef7ff 0%, #fdf2f8 100%);
}

.service-card-3 {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.service-card-3:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.service-card-4 {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
}

.service-card-4:hover {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}



.service-card h3 {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 1.2rem 1.2rem 0.7rem 1.2rem;
    letter-spacing: 1px;
}

.service-card p {
    font-size: 0.95rem;
    margin: 0 1.2rem 1.2rem 1.2rem;
    color: #555;
    flex-grow: 1;
}

.service-btn {
    margin: 0 1.2rem 1.2rem 1.2rem;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 0;
    font-size: 0.95rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.service-btn:hover {
    background: linear-gradient(90deg, var(--accent-green), var(--primary-green));
}

.services-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(23,42,29,0.8);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 1.7rem;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.services-arrow.left {
    left: 0;
}

.services-arrow.right {
    right: 0;
}

.services-arrow:hover {
    background: var(--accent-green);
}

.services-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 6rem;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.services-carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(.4,.2,.2,1);
    gap: 2rem;
    width: 100%;
}

/* Catalog Download Section */
.catalog-download {
    margin-top: 2.5rem;
    text-align: center;
    display: flex;
    justify-content: center;
}

.catalog-card {
    display: flex;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 2rem 2rem;
    flex-direction: column;
    align-items: center;
    width: 20rem;
}

.catalog-logo {
    width: 10rem;
    margin-bottom: 1rem;
    border-radius: 15px;
}

.container-mapa-brasil {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
    margin: 10rem auto 10rem;
}

.container-mapa-brasil-texto {
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

.catalog-download-btn {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    border: none;
}

/* Section Clientes */
.section-clientes {
    padding: 30px 0;
    background:#f8f9fa
}

/* Gallery Section */
.gallery {
    /* padding: 80px 0; */
    background: var(--light-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--light-green);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-green);
}

.stat-label {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact {
    padding: 10rem 0;
    background: var(--white);
    color: var(--black);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.contact p {
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--black);
    border: 1px solid #e0e0e0;
    background: #fafafa;
}

.contact-item:hover {
    background: #f0f0f0;
    border-color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 42, 29, 0.1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.contact-value {
    font-size: 1rem;
    color: var(--black);
    font-weight: 600;
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        order: 1;
    }

    .footer-logo-img {
        height: 5.5rem;
    }

    .footer-description {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contacts {
        order: 2;
    }

    .footer-services {
        order: 3;
    }

    .footer-location {
        order: 4;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-list,
    .services-list {
        align-items: center;
    }

    .contact-link-minimal,
    .service-item {
        text-align: center;
        justify-content: center;
    }

    .map-container iframe {
        height: 160px;
    }

    .location-text {
        justify-content: center;
    }
}

@media (max-width: 830px) {
    .quote-hero-banner{
        min-height: 5.7rem !important;
    }

    .quote-hero-overlay{
        margin-top: 0 !important;
    }

    #carousel-images img{
        padding-top: 0 !important;
    }

    #carousel-indicators{
        bottom: 0 !important;
    }

    .container-mapa-brasil{
        flex-direction: column;
    }

    .container-mapa-brasil-texto{
        text-align: center;
    }

    #clients-carousel{
        padding: 40px 0 0 0!important;
    }

    .logo img{
        height: 4rem;
    }

    nav {
        padding: 0.5rem 0;
        position: relative !important;
    }

    .nav-container {
        flex-direction: row;
        align-items: center;
        position: relative;
    }

    .logo {
        font-size: 1.2rem;
        gap: 6px;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 2rem;
        background: none;
        border: none;
        color: #0074c8;
        z-index: 1100;
    }

    .nav-links {
        display: none !important;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100vw;
        background: var(--light-gray);
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 2rem 0;
        z-index: 1000;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        font-size: 1.2rem;
    }

    .nav-links.active {
        display: flex !important;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 0.5rem 0;
        font-size: 1.1rem;
        color: #222;
        border: none;
        background: none;
    }
    .social-icons {
        display: none !important;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .services {
        padding: 60px 0;
    }
/* 
    .gallery,
    .about,
    .contact {
        padding: 2rem 0;
    } */

    .section-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2.5rem;
    }

    .services-header .section-title {
        font-size: 2rem;
    }

    .services-tagline {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem;
        border-radius: 15px;
    }


    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .service-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }


    /* Catalog Responsive */
    .catalog-download {
        margin-top: 2.5rem;
        padding: 0 1rem;
    }

    .catalog-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .catalog-logo {
        width: 150px;
    }

    .services-grid,
    .gallery-grid,
    .about-content,
    .about-stats,
    .contact-info {
        gap: 1rem;
        max-width: 100%;
    }

    .gallery-item,
    .stat,
    .contact-item {
        padding: 0.8rem;
        font-size: 0.95rem;
    }

    .gallery-item img {
        height: 120px;
    }

    #carousel {
        height: 70vh !important;
    }
    
    #carousel-images img {
        height: 70vh;
    }

    .about-text h2,
    .contact h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .contact p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .contact-content {
        width: 100%;
        padding: 0 1rem;
    }


    /* Footer Responsive */
    .footer {
        padding: 2rem 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-section {
        align-items: center;
    }

    .footer-logo {
        align-items: center;
        order: 1;
    }

    .footer-logo-img {
        height: 5rem;
        margin-bottom: 1rem;
    }

    .footer-description {
        text-align: center;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 0;
    }

    .footer-contacts {
        order: 2;
    }

    .footer-services {
        order: 3;
    }

    .footer-location {
        order: 4;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-list {
        align-items: center;
        gap: 0.5rem;
    }

    .contact-link-minimal {
        text-align: center;
        font-size: 0.85rem;
    }

    .services-list {
        align-items: center;
        gap: 0.5rem;
    }

    .service-item {
        justify-content: center;
        font-size: 0.85rem;
    }

    .map-container {
        margin-bottom: 1rem;
    }

    .map-container iframe {
        height: 180px;
    }

    .location-text {
        justify-content: center;
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding: 1rem 0;
    }

    .footer-bottom-content {
        padding: 0 1rem;
        gap: 0.3rem;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    align-items: center;
}

.footer-logo-img {
    height: 8rem;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.footer-description {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-align: center;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-green);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Contact Section */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-link-minimal {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.contact-link-minimal:hover {
    color: var(--accent-green);
}

/* Services Section */
.services-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
}


/* Location Section */
.map-container {
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.location-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
}

.location-icon {
    color: var(--accent-green);
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
}

.footer-tagline {
    color: var(--accent-green) !important;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}


/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Hidden sections for navigation */
.section {
    display: none;
}

.section.active {
    display: block;
}

#home.active {
    display: block;
}

.img-servicos{
    height: 12rem;
}

#carousel {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 70vh;
    margin: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

#carousel-images {
    display: flex;
    transition: transform 0.6s ease;
}

#carousel-images img {
    width: 100%;
    /* height: 70vh; */
    object-fit: cover;
    flex-shrink: 0;
}

#carousel-prev,
#carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 2;
}

#carousel-prev {
    left: 10px;
}

#carousel-next {
    right: 10px;
}

#carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

#clients-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 120px; /* Mais espaço para mostrar laterais */
}

#clients-carousel-images {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 40px;
    will-change: transform;
    align-items: center;
}

#clients-carousel-images img {
    width: 33.33%;
    height: 85px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 0.5rem;

    transition:
        transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.6s ease,
        box-shadow 0.6s ease;
}

/* Imagem central - máximo destaque */
#clients-carousel-images img.active {
    transform: scale(1.15);
    opacity: 1;
    z-index: 10;

    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/* Imagens laterais */
#clients-carousel-images img.side {
    transform: scale(0.85);
    opacity: 0.5;
}

/* Imagens escondidas */
#clients-carousel-images img.hidden {
    transform: scale(0.7);
    opacity: 0.25;
}

/* Botões de navegação */
#clients-carousel-prev,
#clients-carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 16px;
    color: #0074c8;
    cursor: pointer;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-weight: bold;
}

#clients-carousel-prev:hover,
#clients-carousel-next:hover {
    background: #0074c8;
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 10px 30px rgba(0, 116, 200, 0.4);
}

#clients-carousel-prev:active,
#clients-carousel-next:active {
    transform: translateY(-50%) scale(0.95);
}

#clients-carousel-prev {
    left: 50px;
}

#clients-carousel-next {
    right: 50px;
}

/* Gradientes mais suaves */
#clients-carousel::before,
#clients-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

#clients-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

#clients-carousel-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
}

#clients-carousel-dots button.active {
    width: 28px;
    border-radius: 10px;
    background: var(--accent-green);
}


/* Responsivo para telas médias */
@media (max-width: 1024px) and (min-width: 676px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Responsivo para telas menores */
@media (max-width: 675px) {
    #carousel {
        height: 230px !important;
        width: 100%;
    }
    #carousel-images img {
        height: 230px;
    }

    .img-sobre{
        width: 18rem !important;
    }

    .services {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .services-header .section-title {
        font-size: 1.8rem;
    }

    .services-tagline {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 0;
        margin: 0;
    }

    .service-image {
        height: 150px;
    }

    .image-placeholder {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .service-card h3 {
        font-size: 1rem;
        margin: 1rem 1rem 0.5rem 1rem;
    }

    .service-card p {
        font-size: 0.8rem;
        margin: 0 1rem 1rem 1rem;
    }


    /* Catalog Mobile */
    .catalog-download {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }

    .catalog-card {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .catalog-logo {
        width: 120px;
    }

    /* Footer Mobile Optimizations */
    .footer {
        padding: 1.5rem 0 0;
    }

    .footer-logo{
        align-items: center;
    }

    .footer-container {
        gap: 2rem;
        padding: 0 0.5rem;
        grid-template-columns: none;
    }

    .footer-logo-img {
        height: 4rem;
    }

    .footer-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .contact-link-minimal {
        font-size: 0.8rem;
    }

    .service-item {
        font-size: 0.8rem;
    }

    .map-container iframe {
        height: 150px;
    }

    .location-text {
        font-size: 0.8rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .footer-bottom {
        padding: 0.8rem 0;
    }

    .footer-bottom-content {
        padding: 0 0.5rem;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

.icon-img{
    width: 2rem;
}

.img-sobre{
   width: 21rem; 
   margin: 0 0 1rem;
}

/* Sidebar */
.sidebar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90vw;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -4px 0 24px rgba(0,0,0,0.2);
    transition: right 0.3s;
    overflow-y: auto;
}

.sidebar-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.sidebar-content {
    padding: 48px 32px 32px 32px;
}

.sidebar-content h2 {
    margin-bottom: 16px;
}

.sidebar-content p {
    color: #333;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 500;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.2s;
}

.whatsapp-float:hover {
    box-shadow: 0 8px 24px rgba(37,211,102,0.25);
    background: #1ebe57;
}

.whatsapp-float img {
    width: 36px;
    height: 36px;
    display: block;
}

.btn-saiba-mais{
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    align-items: center;
    margin: 0 4.2rem 1.2rem 4.2rem;
    border: none;
}

/* ==== IMAGENS RESPONSIVAS ==== */

/* Todas as imagens se adaptam à largura do container */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ajusta o carrossel pra ficar fluido em qualquer tela */
#carousel {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

#carousel-images {
  display: flex;
  transition: transform 0.6s ease;
}

#carousel-images img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding-top: 1rem;
}

/* Responsividade do carrossel */
@media (max-width: 768px) {
  #carousel {
    height: 300px; /* altura reduzida no mobile */
  }
}

/* Imagens do footer */
footer img {
  max-width: 200px;
  height: auto;
}

.quote-hero-banner {
    position: relative;
    width: 100%;
    max-height: 37rem;
    min-height: 28rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('./imagens/imagem-cotacao.png');
    background-size: cover;
    background-position: center;
    filter: blur(40px);
    transform: scale(1.2);
    z-index: 1;
}

.quote-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('./imagens/imagem-cotacao.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
}

.quote-hero-banner > * {
    position: relative;
    z-index: 3;
}


.quote-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 7rem;
}

.quote-text-home:hover{
    transition: all 0.3s ease;
    color: var(--accent-green);
    cursor: pointer;
    text-decoration: none;
}

.quote-hero-content {
    text-align: center;
    color: var(--white);
    z-index: 1;
    max-width: 1200px;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.quote-breadcrumbs {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.quote-home-btn {
    margin-top: 2rem;
    background: #0074c8;
    color: var(--white);
    border: none;
    padding: 12px 32px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.quote-home-btn:hover {
    background: #005fa3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 116, 200, 0.3);
}

.quote-section {
    background: var(--white);
    padding: 4rem 0;
}

.quote-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.quote-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Coluna da Descrição */
.quote-description {
    padding-right: 2rem;
}

.quote-label {
    color: var(--accent-green);
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.quote-title {
    color: var(--dark-gray);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.quote-subtitle {
    color: var(--dark-gray);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.quote-text {
    color: var(--text-cotacao);
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
}

.box-lu{
    margin-left: 2rem;
    color: var(--text-cotacao);
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Coluna do Formulário */
.quote-form-container {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.quote-form-title {
    color: var(--dark-gray);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.quote-accent {
    color: var(--accent-green);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    color: var(--dark-gray);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    color: var(--dark-gray);
    background: var(--white);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-submit-btn {
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 1rem;
    align-self: center;
    min-width: 200px;
}

.quote-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.3);
}

/* Responsividade da Seção de Cotação */
@media (max-width: 768px) {
    .quote-hero-banner {
        height: 5rem;
    }
    
    .quote-hero-title {
        font-size: 2.5rem;
    }
    
    .quote-breadcrumbs {
        font-size: 0.8rem;
    }
    
    .quote-home-btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
    
    .quote-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .quote-container {
        padding: 0 1rem;
    }
    
    .quote-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quote-description {
        padding-right: 0;
        text-align: center;
    }
    
    .quote-title {
        font-size: 2rem;
    }
    
    .quote-subtitle {
        font-size: 1.1rem;
    }
    
    .quote-form-container {
        padding: 1.5rem;
    }
    
    .quote-form-title {
        font-size: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .quote-submit-btn {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    /* .quote-hero-banner {
        height: 40vh;
        min-height: 250px;
    } */
    
    .quote-hero-title {
        font-size: 2rem;
    }
    
    .quote-breadcrumbs {
        font-size: 0.75rem;
    }
    
    .quote-home-btn {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
    
    .quote-form-container {
        padding: 1rem;
    }
    
    .quote-title {
        font-size: 1.8rem;
    }
    
    .quote-form-title {
        font-size: 1.3rem;
    }
}