/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a5f3f;
    --secondary-color: #2d8f5f;
    --accent-color: #ff6b35;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: rgb(255, 255, 255);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.block-header {
    background: #000;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 37px 16px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.block-header.transparent {
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none;
}

.block-header.transparent .item-content {
    color: rgb(255, 255, 255);
}

.block-header.transparent .block-header-logo__image {
    filter: brightness(1.2);
}

.block-header-layout-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.block-header-layout-mobile {
    display: none;
}

.block-header-logo {
    display: inline-block;
}

.block-header-logo__image {
    height: 65px;
    width: auto;
    max-width: 230px;
}

.block-header-logo__text {
    font-size: 1.5rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-block;
}

.block-header.transparent .block-header-logo__text {
    color: rgb(255, 255, 255);
}

.block-header__nav {
    display: flex;
}

.block-header__nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.block-header-item {
    margin: 0;
}

.block-header-item__label {
    display: block;
    margin: 0;
}

.item-content-wrapper {
    display: inline-block;
}

.item-content-wrapper--active .item-content {
    color: rgb(255, 182, 15);
}

.block-header-item__item {
    display: inline-block;
}

.item-content {
    text-decoration: none;
    color: rgb(209, 213, 219);
    font-weight: 400;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    display: inline-block;
}

.item-content:hover {
    color: rgb(255, 182, 15);
}

.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.burger__bun,
.burger__meat {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.block-header-layout-mobile__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #000;
    padding: 1rem;
    box-shadow: var(--shadow);
}

.block-header-layout-mobile__dropdown.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 0;
    z-index: 1;
    top: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: transparent;
    z-index: 2;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

.hero-background img,
.hero-background .block-background__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.block-background__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.48);
    z-index: -1;
    pointer-events: none;
}

.block-background__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    padding: 2rem;
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content .container {
    max-width: 1200px;
    margin: 0;
    margin-left: 10%;
    padding: 0 20px;
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: rgb(255, 182, 15);
    text-transform: none;
    letter-spacing: normal;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-title-highlight {
    background: rgb(221, 221, 221);
    padding: 0.25rem 0.5rem;
    display: inline-block;
}

.hero-subtitle {
    font-size: 2rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
    text-align: left;
}

.btn-hero {
    margin-top: 0;
    margin-bottom: 0;
    display: inline-block;
    text-align: left;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 56px;
    margin-bottom: 3rem;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    line-height: 1.25;
}

/* Setores Section */
.setores {
    background: var(--bg-light);
}

.setores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.setor-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.setor-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.setor-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Bairros Section */
.bairros {
    background: rgb(255, 255, 255);
    position: relative;
    z-index: 10;
}

.bairros-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.bairro-zone {
    background: rgb(221, 221, 221);
    padding: 1.5rem 2rem 0 2rem;
    padding-bottom: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: fit-content;
}

.zone-title {
    color: rgb(255, 123, 15);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'DM Sans', sans-serif;
}

.bairro-zone ul {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.5rem;
    margin: 0;
    padding-bottom: 0;
}

.bairro-zone li {
    padding: 0;
    margin-bottom: 8px;
    margin-left: 0;
}

.bairro-zone li:last-child {
    margin-bottom: 0;
}

.bairro-zone li::marker {
    color: rgb(0, 0, 0);
}

.bairro-zone li h3 {
    color: rgb(26, 26, 26);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    margin-bottom: 8px;
    line-height: 1.17;
}

.bairro-zone li .body {
    color: rgb(26, 26, 26);
    font-size: 16px;
    font-weight: 400;
    font-family: 'Roboto Condensed', sans-serif;
    margin: 0;
    margin-bottom: 8px;
    line-height: 1.17;
}

.bairro-zone li:last-child .body {
    margin-bottom: 0;
}

.bairro-zone li:last-child {
    margin-bottom: 0;
}

.bairro-zone li:last-child .body,
.bairro-zone li:last-child h3 {
    margin-bottom: 0;
}

/* Setores Section */
.setores {
    padding: 4rem 0;
    background: rgb(255, 255, 255);
    position: relative;
    z-index: 10;
}

.setores-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    line-height: 1.3;
}

.setores-title-black {
    color: rgb(0, 0, 0);
}

.setores-title-orange {
    color: rgb(255, 123, 15);
}

.setores-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.setor-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.setor-image-wrapper {
    width: 100%;
    max-width: 297px;
    height: 217px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.setor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.setor-subtitle {
    color: rgb(0, 0, 0);
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.setor-description {
    color: rgb(86, 86, 86);
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    text-align: left;
    margin: 0;
}

/* Responsive Setores */
@media (max-width: 992px) {
    .setores-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .setor-image-wrapper {
        max-width: 100%;
    }
}

/* Precisando de Caçamba Section */
.precisando-cacamba {
    background: rgba(247, 139, 72, 0.9);
    padding: 3rem 0;
    position: relative;
    z-index: 10;
}

.precisando-cacamba-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: nowrap;
}

.precisando-cacamba-left {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.precisando-cacamba-image-wrapper {
    width: 157px;
    height: 155px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.precisando-cacamba-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.precisando-cacamba-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-shrink: 0;
}

.precisando-cacamba-title {
    color: rgb(255, 255, 255);
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    margin: 0 auto 8px auto;
    text-transform: uppercase;
    line-height: 1.3;
    text-align: center;
    width: 100%;
}

.precisando-cacamba-subtitle {
    color: rgb(255, 255, 255);
    font-size: 1.25rem;
    font-weight: bold;
    font-family: 'DM Sans', sans-serif;
    margin: 0 auto;
    line-height: 1.4;
    text-align: center;
    width: 100%;
}

.btn-solicitar {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Empresa Sobre Section */
.empresa-sobre {
    background: rgb(255, 255, 255);
    background-image: url('../../img/Screenshot_9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.empresa-sobre::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.empresa-sobre .container {
    position: relative;
    z-index: 1;
}

.empresa-sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.empresa-sobre-left {
    display: flex;
    flex-direction: column;
}

.empresa-sobre-title {
    color: rgb(255, 123, 15);
    font-size: 2rem;
    font-weight: bold;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 1rem;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.empresa-sobre-subtitle {
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
    line-height: 1.3;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: normal;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.empresa-sobre-text {
    margin-bottom: 2rem;
}

.empresa-sobre-text .body-small {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    line-height: 1.3;
    font-family: 'Roboto Condensed', sans-serif;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

.empresa-sobre-text .body-small:last-child {
    margin-bottom: 0;
}

.empresa-sobre-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.empresa-sobre-image-wrapper {
    width: 100%;
    max-width: 480px;
}

.empresa-sobre-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

.btn-contato {
    width: auto;
    max-width: 300px;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-top: 1rem;
}

/* Empresa Section (AMLURB e Tipos de Resíduos) */
.empresa {
    background: rgb(36, 36, 36);
    padding: 4rem 0;
    position: relative;
    z-index: 10;
}

.empresa-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

/* Left Side - Resíduos Image */
.empresa-left {
    display: flex;
    align-items: center;
    justify-content: center;
}

.residuos-image-wrapper {
    width: 100%;
    max-width: 509px;
}

.residuos-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5.5%;
    object-fit: cover;
}

/* Right Side - AMLURB Section */
.empresa-right {
    display: flex;
    align-items: stretch;
}

.amlurb-section {
    background: rgb(36, 36, 36);
    border-radius: 10px;
    padding: 2.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
}

.amlurb-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 8px;
    line-height: 1.2;
}

.amlurb-title-white {
    color: rgb(255, 255, 255);
}

.amlurb-title-orange {
    color: rgb(255, 182, 15);
}

.amlurb-body-small {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.amlurb-subtitle-orange {
    color: rgb(255, 182, 15);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.amlurb-text-white {
    color: rgb(255, 255, 255);
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

.amlurb-body {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.amlurb-body:last-child {
    margin-bottom: 0;
}

.grid-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    font-weight: 500;
}

.grid-button--primary {
    border-radius: var(--border-radius, 15px);
    border-width: var(--border-width, 2px);
    border-style: solid;
    background-color: var(--background-color, rgba(255, 123, 15, 0));
    color: var(--font-color, rgb(255, 255, 255));
    border-color: var(--border-color, rgb(255, 255, 255));
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
}

.grid-button--primary:hover {
    background-color: var(--background-color-hover, rgb(255, 123, 15));
    color: var(--font-color-hover, rgb(255, 255, 255));
    border-color: var(--border-color-hover, rgba(0, 0, 0, 0));
}

.btn-amlurb {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

/* Footer */
.footer {
    background: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
    padding: 3rem 0;
    position: relative;
    z-index: 100;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-logo-ms {
    font-size: 2rem;
    font-weight: bold;
    color: rgb(0, 255, 0);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid rgb(0, 255, 0);
    padding: 0.25rem 0.5rem;
}

.footer-logo-ambiental {
    font-size: 1.5rem;
    font-weight: 500;
    color: rgb(255, 255, 255);
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgb(255, 255, 255);
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    letter-spacing: 1px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-title {
    font-size: 1rem;
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-family: 'DM Sans', sans-serif;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
    letter-spacing: 1px;
}

.footer-address {
    font-size: 0.875rem;
    color: rgb(255, 255, 255);
    font-family: 'DM Sans', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.footer-phone {
    font-size: 0.875rem;
    color: rgb(255, 255, 255);
    font-family: 'DM Sans', sans-serif;
    margin: 0;
    line-height: 1.5;
}

.footer-social {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.social-icon {
    color: rgb(255, 255, 255);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.footer-bottom {
    display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .bairros-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .bairros-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .block-header {
        padding: 16px;
    }

    .block-header-layout-desktop {
        display: none;
    }

    .block-header-layout-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    .block-header-logo__image {
        height: 50px;
        max-width: 180px;
    }

    .block-header-logo__text {
        font-size: 1.25rem;
    }

    .burger {
        display: flex;
    }

    .block-header__nav-links {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

    .block-header-layout-mobile__dropdown {
        display: none;
    }

    .block-header-layout-mobile__dropdown.active {
        display: block;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 36px;
    }

    .precisando-cacamba-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .precisando-cacamba-right {
        align-items: center;
    }

    .precisando-cacamba-image-wrapper {
        width: 120px;
        height: 120px;
        margin: 0 auto;
    }

    .precisando-cacamba-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .precisando-cacamba-subtitle {
        text-align: center;
    }

    .empresa-sobre-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .empresa-sobre-title {
        font-size: 1.5rem;
    }

    .empresa-sobre-subtitle {
        font-size: 1.25rem;
    }

    .empresa-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .residuos-image-wrapper {
        max-width: 100%;
    }

    .amlurb-title {
        font-size: 1.25rem;
    }

    .setores-grid {
        grid-template-columns: 1fr;
    }

    .bairros-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-logo {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo-ms {
        font-size: 1.5rem;
    }

    .footer-logo-ambiental {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 400px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 0.875rem 2rem;
        font-size: 0.9rem;
    }

    section {
        padding: 2rem 0;
    }
}


