:root {
    --green-dark: #123818;
    --green: #2f6b28;
    --green-light: #eaf2e5;

    --brown: #7a4b22;

    --white: #ffffff;
    --background: #f4f4f0;

    --text: #1f2a1f;
    --muted: #5f6b5f;

    --radius: 18px;

    --shadow:
        0 16px 40px rgba(0,0,0,.14);

    --transition: .25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font: inherit;
}

header {
    height: 95px;
    background: var(--white);

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 70px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 38px;

    font-size: 14px;
    font-weight: 700;
}

nav a {
    color: var(--text);
}

nav a:hover {
    color: var(--green);
}

nav a.active {
    color: var(--green);
    border-bottom: 2px solid var(--green);
    padding-bottom: 8px;
}

.quote-btn {
    background: var(--green);
    color: var(--white);

    padding: 15px 28px;

    border-radius: 40px;
}

.quote-btn:hover {
    background: var(--green-dark);
}

.hero {
    min-height: 690px;

    display: flex;
    align-items: center;

    padding: 90px 70px;

    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.70),
            rgba(0,0,0,.40),
            rgba(0,0,0,.08)
        ),
        url("images/hero.png") center center / cover no-repeat;
}

.hero-content {
    max-width: 620px;
}

.hero h1 {
    font-size: clamp(42px,6vw,76px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero-line {
    width: 80px;
    height: 4px;
    background: white;
    margin-bottom: 30px;
}

.hero p {
    font-size: 21px;
    margin-bottom: 30px;
}

.hero-price {
    display: inline-block;

    margin-bottom: 35px;

    padding: 18px 24px;

    border-radius: 15px;

    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);

    font-size: 25px;
    font-weight: bold;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    padding: 15px 32px;

    border-radius: 40px;

    border: 2px solid var(--green);

    font-weight: bold;

    transition: var(--transition);
}

.btn-primary {
    background: var(--green);
    color: white;
}

.btn-primary:hover {
    background: var(--green-dark);
}

.btn-secondary {
    border-color: white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--green-dark);
}

.section {
    padding: 80px 70px;
}

.service-info {
    width: min(1180px, calc(100% - 40px));

    margin: -70px auto 0;

    background: white;

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 35px;

    padding: 35px;

    position: relative;
    z-index: 5;
}

.info-card h3 {
    color: var(--green-dark);
    margin-bottom: 12px;
}

.info-card p {
    color: var(--muted);
}

.products {
    background:
        linear-gradient(
            180deg,
            white,
            var(--green-light)
        );

    text-align: center;
}

.section-label {
    color: var(--green);

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 10px;
}

.products h2 {
    font-size: clamp(34px,4vw,52px);
    color: var(--green-dark);
}

.products-intro {
    max-width: 700px;

    margin: 20px auto 50px;

    color: var(--muted);

    font-size: 18px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);

    gap: 35px;

    max-width: 1180px;

    margin: auto;
}

.product-card {
    background: white;

    border-radius: var(--radius);

    overflow: hidden;

    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.product-card img {
    height: 300px;
    width: 100%;
    object-fit: cover;

    background: #d8ded3;
}

.product-content {
    padding: 30px;
    text-align: left;
}

.product-content h3 {
    font-size: 32px;
    color: var(--green-dark);

    margin-bottom: 12px;
}

.product-meta {
    color: var(--brown);
    font-weight: bold;
    margin-bottom: 18px;
}

.product-content p {
    color: var(--muted);
    margin-bottom: 24px;
}

.cta {
    background: var(--green-dark);

    color: white;

    padding: 60px 70px;

    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;

    gap: 40px;
}

.cta h2 {
    font-size: 34px;
    margin-bottom: 12px;
}

.cta p {
    opacity: .9;
}

footer {
    background: #0d2812;

    color: rgba(255,255,255,.75);

    text-align: center;

    padding: 28px;
}

@media (max-width:1000px) {

    header {
        height: auto;

        padding: 25px;

        flex-direction: column;

        gap: 25px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero {
        min-height: 600px;
        padding: 70px 35px;
    }

    .service-info {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 35px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .cta {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 45px 35px;
    }

}

@media (max-width:650px) {

    nav {
        font-size: 13px;
    }

    .quote-btn {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 18px;
    }

    .service-info {
        width: calc(100% - 24px);
        padding: 24px;
    }

    .product-card img {
        height: 230px;
    }

}

.add-cart-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.add-cart-btn svg{
    width:20px;
    height:20px;
}

.user-btn {
    background: var(--green);
    color: var(--white);
    padding: 15px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.user-btn:hover {
    background: var(--green-dark);
}

.user-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.enter-page {
    background: var(--background);
}

.enter-hero {
    padding: 70px;
    text-align: center;
    background: var(--green-dark);
    color: white;
}

.enter-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    margin-bottom: 12px;
}

.enter-wrapper {
    width: min(1100px, calc(100% - 40px));
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.enter-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 45px;
}

.enter-card h2 {
    color: var(--green-dark);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: var(--green-dark);
}

.form-group .checkbox-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
}

.form-group .checkbox-card input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
}

.form-group .checkbox-card span {
    display: inline-block;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccd5c8;
    border-radius: 12px;
    font-size: 16px;
}

.form-group textarea {
    width: 100%;
    min-height: 180px;
    padding: 14px 16px;
    border: 1px solid #ccd5c8;
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    resize: vertical;
    box-sizing: border-box;
}

.alert {
    padding: 14px 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-weight: bold;
}

.alert-error {
    background: #ffe8e8;
    color: #8a1f1f;
}

.alert-success {
    background: #e8f6e8;
    color: #1f6b28;
}

@media (max-width: 850px) {
    .enter-wrapper {
        grid-template-columns: 1fr;
    }

    .enter-hero {
        padding: 50px 25px;
    }
}

.single-enter {
    width: min(820px, calc(100% - 40px));
    max-width: 820px;
    margin: 60px auto;

    display: block;
}

.single-enter .enter-card {
    width: 100%;
}

.enter-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: var(--green-light);
    border-radius: 40px;
    padding: 6px;
    margin-bottom: 30px;
}

.enter-tab {
    border: none;
    background: transparent;
    padding: 18px 24px;
    border-radius: 40px;
    font-weight: 800;
    color: var(--green-dark);
    cursor: pointer;
    font-size: 16px;
}

.enter-tab.active {
    background: var(--green);
    color: var(--white);
}

.enter-tab-content {
    display: none;
}

.enter-tab-content.active {
    display: block;
}

.verify-page {
    min-height: calc(100vh - 95px);
    background: var(--background);
    display: flex;
    flex-direction: column;
}

.verify-wrapper {
    width: min(760px, calc(100% - 40px));
    margin: 80px auto;
}

.verify-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 50px;
    text-align: center;
}

.verify-icon {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    margin: 0 auto 28px;
    display: grid;
    place-items: center;
}

.verify-success .verify-icon {
    background: #e8f6e8;
    color: var(--green);
}

.verify-error .verify-icon {
    background: #ffe8e8;
    color: #8a1f1f;
}

.verify-card h1 {
    color: var(--green-dark);
    font-size: clamp(30px, 4vw, 44px);
    margin-bottom: 16px;
}

.verify-card p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.verify-actions {
    display: flex;
    justify-content: center;
}

.account-page {
    background: var(--background);
}

.account-hero {
    padding: 70px;
    text-align: center;
    background: var(--green-dark);
    color: white;
}

.account-hero h1 {
    font-size: clamp(36px, 5vw, 58px);
    margin-bottom: 12px;
}

.account-hero p {
    font-size: 18px;
    opacity: .9;
}

.account-wrapper {
    width: min(1180px, calc(100% - 40px));
    margin: 60px auto;
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 35px;
    align-items: start;
}

.account-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 35px;
}

.account-card h2 {
    color: var(--green-dark);
    margin-bottom: 25px;
}

.account-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
}

.account-card-header h2 {
    margin-bottom: 0;
}

.account-info-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid #e1e8dd;
}

.account-info-row strong {
    color: var(--green-dark);
}

.account-info-row span {
    color: var(--muted);
}

.account-actions {
    margin-top: 28px;
}

.address-list {
    display: grid;
    gap: 18px;
}

.address-item {
    border: 1px solid #dfe8d9;
    border-radius: 16px;
    padding: 22px;
    background: #fbfdf9;
    display: grid;
    gap: 6px;
}

.address-item strong {
    color: var(--green-dark);
    font-size: 18px;
}

.address-item span {
    color: var(--muted);
}

.empty-message {
    color: var(--muted);
    background: var(--green-light);
    border-radius: 14px;
    padding: 20px;
}

@media (max-width: 900px) {
    .account-wrapper {
        grid-template-columns: 1fr;
    }

    .account-card-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .account-card-header .btn {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .account-hero {
        padding: 50px 25px;
    }

    .account-card {
        padding: 26px;
    }

    .account-info-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

.form-wrapper {
    width: min(780px, calc(100% - 40px));
    margin: 60px auto;
}

.form-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 45px;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 22px;
}

.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ccd5c8;
    border-radius: 12px;
    font-size: 16px;
    background: white;
    color: var(--text);
}

.form-actions {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-secondary-dark {
    border-color: var(--green-dark);
    color: var(--green-dark);
}

.btn-secondary-dark:hover {
    background: var(--green-dark);
    color: white;
}

@media (max-width: 700px) {
    .form-card {
        padding: 28px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-actions {
        flex-direction: column-reverse;
    }
}

.address-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.address-details {
    display: grid;
    gap: 6px;
}

.address-delete-form {
    margin: 0;
}

.delete-address-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ffe8e8;
    color: #8a1f1f;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.delete-address-btn:hover {
    background: #8a1f1f;
    color: white;
}

.delete-address-btn svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 600px) {
    .address-item {
        flex-direction: column;
    }

    .delete-address-btn {
        width: 100%;
        border-radius: 12px;
    }
}

.btn-danger {
    border: 2px solid #c53d3d;
    color: #c53d3d;
    background: transparent;
}

.btn-danger:hover {
    background: #c53d3d;
    color: #fff;
}

.account-wide-wrapper {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 60px;
}

.collection-list {
    display: grid;
    gap: 22px;
}

.collection-item {
    border: 1px solid #dfe8d9;
    border-radius: 16px;
    padding: 24px;
    background: #fbfdf9;

    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: flex-start;
}

.collection-main {
    display: grid;
    gap: 18px;
    width: 100%;
}

.collection-topline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.collection-topline strong {
    color: var(--green-dark);
    font-size: 20px;
}

.status-badge {
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    background: var(--green-light);
    color: var(--green-dark);
}

.status-cancelado {
    background: #ffe8e8;
    color: #8a1f1f;
}

.status-concluído {
    background: #e8f6e8;
    color: #1f6b28;
}

.collection-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.collection-info-grid div,
.collection-address,
.collection-notes {
    display: grid;
    gap: 4px;
}

.collection-info-grid small,
.collection-address small,
.collection-notes small {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 12px;
}

.collection-info-grid span,
.collection-address span {
    color: var(--text);
}

.material-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.material-pills span {
    background: var(--green-light);
    color: var(--green-dark);
    padding: 7px 13px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
}

.collection-notes p {
    color: var(--muted);
}

.collection-cancel-form {
    margin: 0;
}

@media (max-width: 800px) {
    .collection-item {
        flex-direction: column;
    }

    .collection-info-grid {
        grid-template-columns: 1fr;
    }

    .collection-cancel-form,
    .collection-cancel-form .btn {
        width: 100%;
    }
}

.content-page {
    background: var(--background);
}

.content-hero {
    padding: 80px 70px;
    text-align: center;
    background:
        linear-gradient(
            90deg,
            rgba(18,56,24,.95),
            rgba(47,107,40,.85)
        );
    color: white;
}

.content-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    margin-bottom: 12px;
}

.content-hero p {
    font-size: 22px;
    opacity: .92;
}

.content-wrapper {
    width: min(1100px, calc(100% - 40px));
    margin: 60px auto;
    display: grid;
    gap: 30px;
}

.content-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 42px;
}

.content-card h2 {
    color: var(--green-dark);
    font-size: 32px;
    margin-bottom: 20px;
}

.content-card h3 {
    color: var(--green);
    font-size: 22px;
    margin-bottom: 12px;
}

.content-card p {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 16px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

.content-split {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.municipality-grid,
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0;
}

.municipality-grid span,
.values-grid div {
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 999px;
    padding: 10px 16px;
    font-weight: 800;
}

.content-card-highlight {
    background:
        linear-gradient(
            135deg,
            white,
            var(--green-light)
        );
}

.content-actions {
    margin-top: 28px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

@media (max-width: 750px) {
    .content-hero {
        padding: 60px 25px;
    }

    .content-card {
        padding: 28px;
    }

    .content-split {
        grid-template-columns: 1fr;
    }

    .content-actions .btn {
        width: 100%;
    }
}

.contact-email-card {
    background: var(--green-light);
    border-radius: 16px;
    padding: 22px;
    display: grid;
    gap: 6px;
    margin: 24px 0;
}

.contact-email-card strong {
    color: var(--green-dark);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-email-card a {
    color: var(--green);
    font-size: 22px;
    font-weight: 800;
    word-break: break-word;
}

.service-detail-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 46px;
}

.service-detail-content h2 {
    color: var(--green-dark);
    font-size: clamp(34px, 4vw, 52px);
    margin: 10px 0 20px;
}

.service-detail-content p {
    color: var(--muted);
    font-size: 18px;
    margin-bottom: 16px;
}

.service-price {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    border-radius: 16px;
    padding: 16px 22px;
    margin: 12px 0 28px;
    font-size: 22px;
}

.service-price strong {
    color: var(--green);
}

.service-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 18px 0 30px;
}

.service-feature-grid div {
    background: #fbfdf9;
    border: 1px solid #dfe8d9;
    border-radius: 16px;
    padding: 20px;
    display: grid;
    gap: 6px;
}

.service-feature-grid strong {
    color: var(--green-dark);
}

.service-feature-grid span {
    color: var(--muted);
}

.service-coming-soon {
    opacity: .92;
}

.coming-soon-badge {
    display: inline-block;
    background: #fff3d8;
    color: #8a5a00;
    border-radius: 999px;
    padding: 10px 18px;
    font-weight: 800;
    margin: 12px 0 28px;
}

@media (max-width: 800px) {
    .service-detail-card {
        padding: 30px;
    }

    .service-feature-grid {
        grid-template-columns: 1fr;
    }
}

button.btn:disabled {
    opacity: .65;
    cursor: not-allowed;
}

.form-help {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}