/* =========================================================
   JARDINS DE MADEIRA — STYLE.CSS
   ========================================================= */

:root {
    --green-dark: #17352a;
    --green: #2f5b45;
    --green-light: #587a61;
    --cream: #f4f0e8;
    --cream-light: #faf8f3;
    --brown: #8a6347;
    --brown-dark: #5d412e;
    --text: #242722;
    --muted: #73766f;
    --white: #ffffff;
    --border: #ddd9d0;
    --shadow: 0 14px 40px rgba(30, 39, 31, 0.10);
    --radius: 4px;
    --container: 1180px;
    --escala-produtos: 1.3;
}

/* ---------- Reset ---------- */

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

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: "Playwrite VN";
    src: url("../Fontes/Playwrite_VN/static/PlaywriteVN-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream-light);
    color: var(--text);
    line-height: 1.6;
}



img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

/* ---------- Base ---------- */

.container {
    width: min(var(--container), calc(100% - 48px));
    margin-inline: auto;
}

.eyebrow {
    color: var(--green);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 12px;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 42px;
}

.section-heading.centered {
    display: block;
    text-align: center;
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 42px;
}

.products-section .section-heading {
    justify-content: center;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.benefits-grid h2,
.quote-box h2,
.contact-grid h2 {
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 3.35rem);
    line-height: 1.05;
    font-weight: 500;
}

.section-heading p:not(.eyebrow),
.about-content > p,
.benefits-grid > div > p,
.contact-grid > div > p {
    color: var(--muted);
}

.text-link {
    color: var(--green);
    font-weight: 700;
    white-space: nowrap;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 25px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-weight: 700;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--green);
    color: var(--white);
}

.button-primary:hover {
    background: var(--green-dark);
}

.button-secondary {
    border-color: rgba(255,255,255,.75);
    color: var(--white);
    background: rgba(255,255,255,.08);
}

.button-secondary:hover {
    background: var(--white);
    color: var(--green-dark);
}

.button-light {
    background: var(--white);
    color: var(--green-dark);
}

.whatsapp-button {
    position: absolute;

    left: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    background: #25D366;
    border-radius: 50%;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);

    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp-button img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.whatsapp-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
}

.hero-right-link {
    position: absolute;
    right: 25px;
    bottom: 25px;

    z-index: 10;

    text-decoration: none;
}

.hero-right-content {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border-radius: 50%;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);

    transition:
        width .45s cubic-bezier(.22, 1, .36, 1),
        height .45s cubic-bezier(.22, 1, .36, 1),
        border-radius .45s ease,
        box-shadow .3s ease;
}

.instagram-icon {
    width: 58px;
    height: 58px;
    object-fit: contain;

    transition:
        opacity .2s ease,
        transform .35s ease;
}

/* ================================
   INSTAGRAM EXPANSÃO AO PASSAR O MOUSE
   ================================ */

.instagram-expand {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    transform: scale(.8);

    transition:
        opacity .3s ease .1s,
        transform .45s cubic-bezier(.22, 1, .36, 1);
}

.hero-image-right {
    width: 150px;
    height: 160px;

    object-fit: contain;
}

.hero-right-text {
    margin-top: 8px;

    padding: 5px 10px;

    color: var(--white);

    font-family: "Inter", Arial, sans-serif;
    font-size: .9rem;
    font-weight: 500;

    white-space: nowrap;

    background-image: url("img/Fundo instagram.png");
    background-size: cover;
    background-position: center;

    border-radius: 5px;
}

/* ================================
   WHATSAPP EXPANSÃO AO PASSAR O MOUSE
   ================================ */

.hero-left-link {
    position: absolute;
    left: 25px;
    bottom: 25px;

    z-index: 10;

    text-decoration: none;
}

.hero-left-content {
    position: relative;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--white);
    border-radius: 50%;

    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);

    transition:
        width .45s cubic-bezier(.22, 1, .36, 1),
        height .45s cubic-bezier(.22, 1, .36, 1),
        border-radius .45s ease,
        box-shadow .3s ease;
}


/* Ícone normal */

.WhatsApp-icon {
    width: 58px;
    height: 58px;

    object-fit: contain;

    transition:
        opacity .2s ease,
        transform .35s ease;
}


/* Conteúdo expandido */

.WhatsApp-expand {
    position: absolute;

    inset: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;

    transform: scale(.8);

    transition:
        opacity .3s ease .1s,
        transform .45s cubic-bezier(.22, 1, .36, 1);
}


/* QR Code */

.hero-image-left {
    width: 150px;
    height: 150px;

    object-fit: contain;
}


/* Texto */

.hero-left-text {
    margin-top: 8px;

    padding: 5px 10px;

    color: var(--white);

    font-family: Arial, sans-serif;
    font-size: .9rem;
    font-weight: 500;

    white-space: nowrap;

    background: #25D366;

    border-radius: 5px;
}


/* ================================
   EXPANSÃO
   ================================ */

.hero-left-link:hover .hero-left-content {
    width: 190px;
    height: 220px;

    border-radius: 10px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}


/* Esconde o ícone */

.hero-left-link:hover .WhatsApp-icon {
    opacity: 0;
    transform: scale(.7);
}


/* Mostra QR + texto */

.hero-left-link:hover .WhatsApp-expand {
    opacity: 1;
    pointer-events: auto;

    transform: scale(1);
}

/* ================================
   EXPANSÃO AO PASSAR O MOUSE
   ================================ */

.hero-right-link:hover .hero-right-content {
    width: 190px;
    height: 220px;

    border-radius: 10px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.hero-right-link:hover .instagram-icon {
    opacity: 0;
    transform: scale(.7);
}

.hero-right-link:hover .instagram-expand {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

/* ---------- Header ---------- */



.logo-area {
    position: absolute;
    left: 20px;
    top: 20px;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
}

/* ---------- Botões do Header ---------- */

.header-buttons {
    position: fixed;
    top: 10px;
    right: 10px;

    display: flex;
    gap: 8px;

    padding: 8px 10px;

    background: rgba(255, 255, 255, 0.92);
    border-radius: 8px;

    z-index: 2000;
}

.header-buttons a {
    padding: 8px 12px;

    color: var(--green-dark);
    font-size: 0.85rem;
    font-weight: 700;

    border-radius: 5px;

    transition: background .2s ease, color .2s ease;
}

.header-buttons a:hover {
    background: var(--green);
    color: var(--white);
}

.topbar {
    background: var(--green-dark);
    color: rgba(255,255,255,.88);
    font-size: .78rem;
}

.topbar-content {
    min-height: 34px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-main {
    width: 100%;
    min-height: 110px;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.logo {
    position: absolute;
    top: 10px;
    left: 10px;

    display: block;
    width: max-content;
}



.logo-mark {
    width: 400px;
    height: auto;
    display: block;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text strong {
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.4rem;
}

.logo-text small {
    color: var(--muted);
    margin-top: 4px;
    font-size: .66rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.main-nav {

    font-family: "Playwrite VN", sans-serif;

    position: fixed;

    top: 4px;
    right: 4px;

    display: flex;
    align-items: center;
    gap: 25px;

    padding: 0px 10px;

    background: var(--green-dark);
    border-radius: 8px;

    font-size: 18px;
    font-weight: 700;

    z-index: 2000;
}

.main-nav a {
    position: relative;
    padding: 8px 0;
    color: var(--white);
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width .2s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.search-button {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--green-dark);
    font-size: 1.45rem;
    border-radius: 50%;
}

.quote-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    border-radius: var(--radius);
    background: var(--green);
    color: var(--white);
    font-size: .82rem;
    font-weight: 700;
}

.quote-button span {
    min-width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--green);
    font-size: .7rem;
}

/* ---------- Hero ---------- */

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 90px 0;
}

.hero .eyebrow {
    color: #dbe7d8;
}

.hero h1 {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 7vw, 5.7rem);
    font-weight: 500;
    line-height: .96;
    letter-spacing: -.04em;
    text-align: center;
}

.hero-description {
    max-width: 570px;
    margin: 25px 0 32px;
    color: rgba(255,255,255,.88);
    font-size: 1.08rem;
    text-align: center;
    transform: translateX(70px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ---------- Categories ---------- */

.solution-section,
.products-section,
.projects-section,
.reviews-section,
.faq-section {
    padding: 0px 0;
}

.solution-section {
    background: var(--cream-light);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.category-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    background: var(--green-dark);
    color: var(--white);
}

.category-image {
    position: absolute;
    inset: 0;
    opacity: .75;
    transition: transform .45s ease;
}

.category-card:hover .category-image {
    transform: scale(1.06);
}

.image-madeiras {
    background: linear-gradient(145deg, #5f432e, #bc9063 55%, #3d2c21);
}

.image-floreiras {
    background: linear-gradient(145deg, #294b36, #729064 52%, #bc956c);
}

.image-paineis {
    background: linear-gradient(145deg, #8b6547, #c5a27e 45%, #61452f);
}

.image-churrasqueira {
    background: linear-gradient(145deg, #30352e, #85664c 60%, #b9956f);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(7, 24, 17, .9), rgba(7, 24, 17, .03) 65%);
}

.category-content {
    position: absolute;
    z-index: 1;
    left: 25px;
    right: 25px;
    bottom: 25px;
}

.category-content > span {
    color: #d7e1d4;
    font-size: .75rem;
    font-weight: 800;
}

.category-content h3 {
    margin: 8px 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.8rem;
    font-weight: 500;
}

.category-content p {
    color: rgba(255,255,255,.78);
    font-size: .86rem;
}

/* ---------- Products ---------- */

.products-section {
    padding-top: 50px;
    padding-bottom: 370px;
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;

    transform: scale(var(--escala-produtos));
    transform-origin: top center;
}

.product-card {
    position: relative;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    background: var(--green-dark);
    border: 1px solid var(--border);
    transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.product-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .75),
        rgba(0, 0, 0, .05) 70%
    );
    z-index: 1;
}

.produto-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    padding: 6px 9px;
    background: var(--white);
    color: var(--green);
    font-size: .68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(36,39,34,.5);
    background:
        linear-gradient(135deg, rgba(70,53,38,.16), transparent 50%),
        linear-gradient(45deg, #b9a184, #e5d6c0);
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

/* ----------  ---------- */
/* ----------  ---------- */
/* ----------  ---------- */

.product-info {
    position: relative;
    z-index: 2;
    min-height: 500px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--white);
}

.product-category {
    margin-bottom: 6px;
    color: #d7e1d4;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.product-info h3 {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    font-weight: 500;
    line-height: 1.15;

    transform: translateY(20px);
    transition: transform .2s ease;
}

.product-card:hover .product-info h3 {
    transform: translateY(0);
}

.product-description {
    position: relative;

    margin: 10px 0 0;
    padding-top: 12px;

    color: rgba(255,255,255,.78);
    font-size: .86rem;

    opacity: 0;
    max-height: 0;
    overflow: hidden;

    transform: translateY(20px);

transition:
    opacity .45s cubic-bezier(.22, 1, .36, 1),
    max-height .45s cubic-bezier(.22, 1, .36, 1),
    transform .45s cubic-bezier(.22, 1, .36, 1);
}

.product-card:hover .product-description {
    opacity: 1;
    max-height: 100px;
    transform: translateY(0);
}

.product-description::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 0;
    height: 2px;

    background: var(--white);

    transition: width .5s ease;
}

.product-card:hover .product-description::before {
    width: 100%;
}

/* ----------  ---------- */
/* ----------  ---------- */
/* ----------  ---------- */

.product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,.25);
}

.product-bottom strong {
    color: var(--white);
    font-size: .95rem;
}

.add-product {
    border: 0;
    background: transparent;
    color: var(--white);
    font-size: .8rem;
    font-weight: 800;
}

/* ---------- Benefits ---------- */

.benefits-section {
    padding: 105px 0;
    background: var(--green-dark);
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.benefits-grid h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.benefits-grid > div > p {
    color: rgba(255,255,255,.72);
    max-width: 500px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
}

.benefit {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 18px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

.benefit:first-child {
    border-top: 1px solid rgba(255,255,255,.15);
}

.benefit > span {
    color: #9db59f;
    font-weight: 800;
    font-size: .8rem;
}

.benefit h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.benefit p {
    color: rgba(255,255,255,.65);
    font-size: .86rem;
}

/* ---------- Gallery ---------- */

.projects-section {
    background: var(--cream-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 230px;
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: end;
    padding: 22px;
    background: linear-gradient(135deg, #71816a, #b69a7a);
    color: var(--white);
}

.gallery-item:nth-child(2) {
    background: linear-gradient(135deg, #4d634f, #a77c59);
}

.gallery-item:nth-child(3) {
    background: linear-gradient(135deg, #826247, #c7ad8f);
}

.gallery-item:nth-child(4) {
    background: linear-gradient(135deg, #364b3a, #92765b);
}

.gallery-item:nth-child(5) {
    background: linear-gradient(135deg, #98765b, #526753);
}

.gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.55), transparent 70%);
}

.gallery-item span {
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.gallery-item.large {
    grid-row: span 2;
}

/* ---------- About ---------- */

.about-section {
    padding: 110px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.about-image {
    min-height: 580px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(25,54,42,.15), transparent),
        linear-gradient(145deg, #947455, #d1b38d 50%, #5a7159);
    color: rgba(255,255,255,.65);
    text-transform: uppercase;
    font-size: .75rem;
    letter-spacing: .12em;
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content > p {
    margin-bottom: 16px;
}

.about-content .button {
    margin-top: 18px;
}

/* ---------- Reviews ---------- */

.reviews-section {
    background: var(--cream-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.review-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--border);
}

.stars {
    margin-bottom: 18px;
    color: var(--brown);
    letter-spacing: 4px;
}

.review-card p {
    min-height: 95px;
    color: var(--text);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.03rem;
    font-style: italic;
}

.review-card strong {
    display: block;
    margin-top: 22px;
    color: var(--green-dark);
    font-size: .88rem;
}

.review-card span {
    color: var(--muted);
    font-size: .76rem;
}

/* ---------- Quote ---------- */

.quote-section {
    padding: 70px 0;
    background: var(--green);
}

.quote-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.quote-box h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.quote-box p:not(.eyebrow) {
    color: rgba(255,255,255,.75);
}

.quote-section .eyebrow {
    color: #d4e3d2;
}

.quote-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.quote-counter {
    color: rgba(255,255,255,.8);
    font-size: .88rem;
}

/* ---------- FAQ ---------- */

.faq-container {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px;
}

.faq-list details {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.faq-list summary {
    position: relative;
    padding-right: 30px;
    color: var(--green-dark);
    font-weight: 700;
    cursor: pointer;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary::after {
    content: "+";
    position: absolute;
    right: 0;
    font-size: 1.2rem;
    font-weight: 400;
}

.faq-list details[open] summary::after {
    content: "−";
}

.faq-list details p {
    max-width: 700px;
    margin-top: 12px;
    color: var(--muted);
    font-size: .9rem;
}

/* ---------- Contact ---------- */

.contact-section {
    padding: 95px 0;
    background: var(--brown-dark);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-grid h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-grid > div > p {
    color: rgba(255,255,255,.72);
}

.contact-section .eyebrow {
    color: #dfc7ad;
}

.contact-actions {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
}

.contact-item:first-child {
    border-top: 1px solid rgba(255,255,255,.18);
}

.contact-item span {
    color: rgba(255,255,255,.58);
    font-size: .76rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.contact-item strong {
    font-size: .92rem;
}

/* ---------- Footer ---------- */

.site-footer {
    padding: 70px 0 25px;
    background: #10271e;
    color: rgba(255,255,255,.72);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 45px;
    padding-bottom: 55px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo .logo-text strong {
    color: var(--white);
}

.footer-logo .logo-text small {
    color: rgba(255,255,255,.48);
}

.footer-grid > div > p {
    max-width: 280px;
    font-size: .84rem;
}

.footer-grid h3 {
    margin-bottom: 17px;
    color: var(--white);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.footer-grid > div:not(:first-child) {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-grid > div:not(:first-child) a,
.footer-grid > div:not(:first-child) p {
    font-size: .82rem;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.42);
    font-size: .72rem;
}

/* ---------- Responsividade ---------- */

@media (max-width: 1050px) {
    .header-main {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        gap: 50px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .container {
        width: min(var(--container), calc(100% - 30px));
    }

    .topbar-content {
        justify-content: center;
        text-align: center;
    }

    .topbar-content span:last-child {
        display: none;
    }

    .header-main {
        min-height: 70px;
        gap: 12px;
    }

    .logo-text {
        display: none;
    }

    .header-actions {
        gap: 7px;
    }

    .quote-button {
        font-size: .75rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 70px 0;
    }

    .hero h1 {
        font-size: clamp(2.8rem, 14vw, 4.4rem);
    }

    .section-heading {
        display: block;
    }

    .section-heading .text-link {
        display: inline-block;
        margin-top: 20px;
    }

    .solution-section,
    .products-section,
    .projects-section,
    .reviews-section,
    .faq-section,
    .about-section {
        padding: 70px 0;
    }

    .category-grid,
    .product-grid,
    .reviews-grid,
    .benefits-grid,
    .about-grid,
    .faq-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .category-card {
        min-height: 330px;
    }

    .benefits-grid {
        gap: 45px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 190px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .about-image {
        min-height: 360px;
    }

    .quote-box {
        display: block;
    }

    .quote-actions {
        margin-top: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 460px) {
    .search-button {
        display: none;
    }

    .quote-button {
        padding: 0 11px;
    }

    .hero-actions,
    .hero-actions .button {
        width: 100%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: auto;
    }

    .contact-item {
        align-items: flex-start;
        flex-direction: column;
    }
}
