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

body {
    overflow-x: hidden;
}

/* HEADER */
header {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgb(255, 255, 255);
    display: flex;
    justify-content: space-around;
    padding: 20px;
    z-index: 1000;
    transition: 0.3s;
    align-items: center;
}

header.scrolled {
    background: #0a3a2a;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header.scrolled a {
    color: rgb(0, 68, 145);
    font-weight: bold;
}

header.scrolled a:hover {
    color: rgb(243, 243, 243);
}

.logo {
    color: white;
    font-weight: bold;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
    color: rgb(2, 70, 0);
    font-weight: bold;
}

.menu a:hover {
    color: rgb(255, 255, 0);
}

/* BOTÃO MOBILE */
.menu-btn {
    display: none;
    font-size: 28px;
    color: rgb(120, 13, 13);
    cursor: pointer;
}



/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;

}

.hero-imagem img {
    display: none;
    width: 600px;
    border-radius: 10px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.553);
}

.hero h1 {
    font-size: 80px;
    color: rgb(28, 43, 0);
    margin-bottom: 1px;
    font-weight: bold;
    text-align: center;
}

.hero p {
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    color: rgb(28, 43, 0);
    font-size: 20px;
}

.btn {
    background: #0a3a2a;
    padding: 20px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    width: 400px;
    margin: auto;
}

.btn:hover {
    background: rgb(207, 207, 134);
    color: #0a3a2a;
}

/* SOBRE */
.sobre {
    padding: 80px 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.99), rgb(3, 32, 0));
}

.sobre h2 {
    text-align: center;
    margin-bottom: 50px;
    color: rgb(28, 43, 0);
    font-size: 60px;
}

.container {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.container img {
    width: 100%;
    max-width: 700px;
    padding: 1px;
    border-radius: 10px;
}

.nossahistoria h2 {
    text-align: center;
    font-size: 40px;
    color: rgb(28, 43, 0);
    padding: 30px;
}

.quemFoto {
    display: flex;
    justify-content: center;
}

.nossahistoria p {
    margin: auto;
    max-width: 700px;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 35px;
    font-size: 20px;
    background: #023000;
}

.nossahistoria p:hover {
    background: #045800;
    color: white;
    transform: translateY(-5px);
    transition: 0.3s;
}

/* SERVIÇOS */
.servicos {
    padding: 100px 20px;
    text-align: center;
    background: #f5f5f500;
}

.servicos h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: rgb(28, 43, 0);
}


/* GRID */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* CARD */
.servico-card {
    background: #0a3a2a;
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: left;
    font-weight: bold;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 20px;
}

/* efeito brilho suave */
.servico-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    top: -100%;
    left: -100%;
    transition: 0.5s;
}

.servico-card:hover::before {
    top: 100%;
    left: 100%;
}

/* hover principal */
.servico-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: #00442b;
}

/* ÍCONE */
.icon {
    font-size: 30px;
    margin-bottom: 15px;
}

/* TEXTO */
.servico-card h3 {
    margin-bottom: 10px;
}

.servico-card p {
    color: #dcdcdc;
    font-size: 15px;
    line-height: 1.5;
}

.servicos-detalhados {
    padding: 100px 20px;
    background: white;
}

.servicos-detalhados h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

/* LISTA */
.lista-servicos {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* ITEM */
.item-servico {
    padding: 25px 30px;
    border-left: 5px solid #0a3a2a;
    background: #afafaf;
    transition: 0.3s;
    border-radius: 8px;
}

.txt-servicos p {
    color: black;
    text-align: center;
    margin: auto;
    padding: 20px;
    margin-top: 10px;
}

/* HOVER BONITO */
.item-servico:hover {
    background: #0a3a2a;
    color: rgb(182, 188, 0);
    transform: translateX(10px);
}

/* TITULO */
.item-servico h3 {
    margin-bottom: 10px;
}

/* TEXTO */
.item-servico p {
    font-size: 15px;
    line-height: 1.5;
}

/* ===== SERVIÇOS ===== */
.servicos {
    text-align: center;
    padding: 80px 20px;
}

.servcs h2 {
    font-size: 60px;
    margin-bottom: 5px;
}

.servcs p {
    color: #333;
    font-size: 18px;
    margin: auto;
    padding: 30px;
    font-weight: 600;
    color: rgb(28, 43, 0);
}

.grid-servicos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 900px;
    margin: auto;
}

.card {
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.664);
    background-color: #ffffff;
    border: 1px solid #727272;
}

.card h3 {
    margin-bottom: 15px;
    color: #045800;
}

.card p {
    color: #000000;
    margin-top: 20px;
}

.card:hover {
    transform: translateY(8px);
    box-shadow: 10px 10px 20px rgba(10, 16, 101, 0.733);
}

.icon {
    font-size: 30px;
    margin-bottom: 10px;
}


/* ===== COLETAS ===== */
.coletas {
    padding: 80px 20px;
    text-align: center;
    background-color: #919191;
}

.coletas h2 {
    font-size: 60px;
    padding: 10px;
    color: rgb(28, 43, 0);
}

.coletas p {
    font-size: 18px;
    margin: auto;
    color: rgb(28, 43, 0);
    font-weight: 600;
}

.paragrafos {
    padding: 20px;
    background: #fff;
}

.accordion {
    max-width: 600px;
    margin: 30px auto;
}

.item {
    margin-bottom: 10px;
}

.item button {
    width: 100%;
    padding: 20px;
    border: none;
    background: #ddd;
    cursor: pointer;
    font-weight: bold;
    text-align: justify;
    border-radius: 5px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.671);
}


.item button:hover {
    background: #d4ff00d3;
    color: rgb(255, 255, 255);
}

.content {
    display: none;
    padding: 15px;
    background: #fff;
    border: 1px solid #ddd;
    text-align: justify;
    font-weight: bold;
}

.content img {
    width: 100%;
    margin-top: 15px;
}

.tabela-section {
    padding: 80px 20px;
    text-align: center;
}

#search {
    padding: 12px;
    width: 300px;
    max-width: 90%;
    margin: 20px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* container scroll */
.table-container {
    overflow-x: auto;
}

/* tabela */
table {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

/* cabeçalho */
thead {
    background: #0a3a2a;
    color: white;
}

th,
td {
    padding: 15px;
    text-align: left;
}

/* linhas */
tbody tr {
    border-bottom: 1px solid #eee;
    transition: 0.3s;
}

/* hover */
tbody tr:hover {
    background: #f5f5f5;
}

/* zebra */
tbody tr:nth-child(even) {
    background: #fafafa;
}

/* responsivo */
@media (max-width: 768px) {

    th,
    td {
        font-size: 14px;
        padding: 10px;
    }
}

.comparativo {
    padding: 80px 20px;
    text-align: center;
    background: #f5f5f5;
}

.cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.carde {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* cores diferentes */
.vidro {
    border-top: 5px solid #3498db;
}

.plastico {
    border-top: 5px solid #27ae60;
}

/* lista */
.card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

.card li {
    margin: 10px 0;
}

/* hover premium */
.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .cards {
        flex-direction: column;
        align-items: center;
    }
}


/* ===== CONTATO ===== */
.contato {
    background: #b7a67a;
    padding: 80px 20px;
}

.container-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 50px 0 50px;
    border: 1px solid #727272;
}

.form {
    padding: 20px;
    border-radius: 10px;
}

.form input,
.form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
}

.form button {
    background: #b38b00;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
}

.mapa iframe {
    width: 100%;
    height: 200px;
    border: none;
    margin-top: 50px;
}

.info {
    padding: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: #383838;
}

.unico {
    margin-top: 20px;
}

.footer {
    background: #0f172a;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-col h2,
.footer-col h3 {
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #00791a;
}

.footer-col p,
.footer-col a {
    color: #ffffff;
    font-size: 14px;
    text-decoration: none;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: #023000;
}

.socials a {
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1e293b;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
    .servicos-detalhados {
        padding: 60px 15px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .servicos {
        padding: 60px 15px;
    }
}

/* ANIMAÇÃO */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE */
@media (max-width: 768px) {

    /* HEADER */
    header {
        position: fixed;
        width: 100%;
        top: 0;
        background: rgb(255, 255, 255);
        display: flex;
        justify-content: space-between;
        padding: 10px;
        z-index: 1000;
        transition: 0.3s;
        align-items: center;
    }

    .menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background: #178d66;
        flex-direction: column;
        padding: 40px;
        transition: 0.3s;
    }

    .menu a {
        color: white;
    }

    .menu.active {
        right: 0;
    }

    .menu-btn {
        display: block;
        padding: 20px;
        color: rgb(119, 123, 0);
    }

    /* HERO */
    .hero p {
        text-align: center;
        font-weight: 200;
        color: rgb(28, 43, 0);
    }

    .hero h1 {
        font-size: 40px;
        font-weight: bold;
        text-align: center;
        color: rgb(28, 43, 0);
    }

    .hero {
        flex-direction: column;
        text-align: center;
        height: 110vh;
    }

    .hero-imagem img {
        display: none;
        width: 100%;
        border-radius: 10px;
        box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.553);
    }

    .btn {
        background: #0a3a2a;
        padding: 10px;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        transition: 0.3s;
        display: flex;
        justify-content: center;
        width: 200PX;
        margin: auto;
    }

    .sobre h2 {
        text-align: center;
        margin-bottom: 50px;
        color: rgb(28, 43, 0);
        font-size: 37px;
    }

    .container-contato {
        grid-template-columns: 1fr;
    }

    .grid-servicos {
        display: flex;
        gap: 20px;
        width: 100%;
        flex-direction: column;
    }

    .coletas h2 {
        font-size: 40px;
        padding: 10px;
        color: rgb(28, 43, 0);
    }

    .coletas p {
        color: rgb(28, 43, 0);
        font-size: 16px;
        margin: auto;
        text-align: center;
        font-weight: 600;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .servcs h2 {
        font-size: 30px;
        margin-bottom: 5px;
    }

    .servcs p {
        font-size: 14px;
    }


}