:root {
    --yellow: #ffd400;
    --yellow2: #ffea5a;
    --red: #d80000;
    --red2: #a90000;
    --dark: #111111;
    --muted: #686868;
    --light: #f6f6f6;
    --white: #ffffff;
    --hero-bg: #fffdf2;
    --shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--dark);
    background: var(--white);
    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1220px, calc(100% - 36px));
    margin: 0 auto;
}

/* =====================================================
   CABEÇALHO
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: var(--yellow);
    border-bottom: 4px solid var(--red);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.site-header .container {
    width: min(1360px, calc(100% - 40px));
    margin: 0 auto;
}

.header-row {
    min-height: 104px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 190px;
    align-items: center;
    gap: 28px;
}

.brand {
    width: 220px;
    min-width: 0;
}

.brand a,
.brand .custom-logo-link {
    display: block;
}

.brand img,
.custom-logo {
    display: block;
    width: 100%;
    max-width: 220px;
    max-height: 84px;
    object-fit: contain;
    object-position: left center;
}

.site-nav {
    width: 100%;
    min-width: 0;
    margin: 0;
}

.menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu li {
    margin: 0;
}

.menu a {
    display: block;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
}

.menu a:hover {
    color: var(--red);
}

.header-whatsapp {
    justify-self: end;
    display: flex;
    width: 190px;
    min-height: 68px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    color: var(--white);
    background: var(--red);
    border-radius: 14px;
}

.header-whatsapp strong,
.header-whatsapp small {
    display: block;
    white-space: nowrap;
}

.wa-icon {
    flex: 0 0 auto;
    font-size: 1.6rem;
}

.menu-toggle {
    display: none;
    justify-self: end;
    padding: 8px;
    border: 0;
    background: transparent;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 5px 0;
    background: var(--dark);
}

/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    overflow: hidden;
    padding: 52px 0 105px;
    background: var(--hero-bg);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: stretch;
    gap: 0;
}

.hero-copy {
    position: relative;
    z-index: 5;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 28px 22px 0;
}

.kicker,
.red-label {
    display: block;
    color: var(--red);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero h1 {
    max-width: 720px;
    margin: 12px 0 24px;
    font-size: clamp(3.1rem, 5.4vw, 6.15rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.hero h1 strong {
    display: block;
    color: var(--red);
    font-size: 0.96em;
}

.hero p {
    max-width: 650px;
    margin: 0;
    font-size: 1.35rem;
}

.location-line {
    margin: 20px 0 0;
    font-size: 1.08rem;
    font-weight: 900;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 26px 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 15px 23px;
    border-radius: 14px;
    font-weight: 900;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.16);
}

.btn-red {
    color: var(--white);
    background: var(--red);
}

.btn-yellow {
    color: var(--dark);
    background: var(--yellow);
    border: 2px solid var(--dark);
}

.hero-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 4px;
}

.hero-icons span {
    padding: 12px 8px;
    text-align: center;
    border-top: 2px solid #dddddd;
}

.hero-icons b {
    display: block;
    margin-top: 5px;
    font-size: 0.78rem;
}

/* Imagem integrada ao lado direito */

.hero-image {
    position: relative;
    min-width: 0;
    min-height: 610px;
    margin-right: -90px;
    overflow: hidden;
}

.hero-image img {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    box-shadow: none;
    filter: none;
}

/* Mistura a imagem com o fundo claro do lado esquerdo */

.hero-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        90deg,
        var(--hero-bg) 0%,
        rgba(255, 253, 242, 0.98) 3%,
        rgba(255, 253, 242, 0.9) 8%,
        rgba(255, 253, 242, 0.62) 16%,
        rgba(255, 253, 242, 0.28) 26%,
        rgba(255, 253, 242, 0) 43%
    );
}

/* Leve luz sobre a imagem */

.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.17) 0%,
            rgba(255, 255, 255, 0) 30%
        ),
        linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0) 35%
        );
}

/* Faixas curvas inferiores */

.hero-shape {
    position: absolute;
    z-index: 7;
    left: -5%;
    right: -5%;
    bottom: -58px;
    height: 118px;
    pointer-events: none;
    transform: rotate(-1.7deg);
    border-radius: 50% 50% 0 0 / 22% 22% 0 0;
    background: linear-gradient(
        to bottom,
        var(--red) 0,
        var(--red) 40%,
        var(--yellow) 40%,
        var(--yellow) 55%,
        var(--white) 55%,
        var(--white) 100%
    );
}

/* =====================================================
   SEÇÕES GERAIS
===================================================== */

.section {
    padding: 90px 0;
}

.section-title {
    margin-bottom: 36px;
    text-align: center;
}

.section-title span {
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

.section-title h2,
.products h2,
.about h2,
.contact h2 {
    margin: 8px 0 18px;
    font-size: clamp(2.3rem, 4vw, 4.2rem);
    line-height: 1.05;
}

/* =====================================================
   CARDS DE SERVIÇOS
===================================================== */

.service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 22px;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card > img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.service-content {
    position: relative;
    padding: 24px;
}

.round-icon {
    position: absolute;
    top: -28px;
    right: 22px;
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    font-size: 1.6rem;
    background: var(--yellow);
    border-radius: 50%;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.service-content h3 {
    margin: 0 0 8px;
    font-size: 1.35rem;
}

.service-content p {
    color: var(--muted);
}

.service-content a {
    color: var(--red);
    font-weight: 900;
}

/* =====================================================
   PRODUTOS
===================================================== */

.products {
    background: #fafafa;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.05fr 1.7fr 0.65fr;
    gap: 34px;
    align-items: center;
}

.check-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    padding: 28px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.check-columns ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-columns li {
    position: relative;
    padding: 7px 0 7px 24px;
    font-weight: 700;
}

.check-columns li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 900;
}

.yellow-callout {
    padding: 26px;
    font-size: 2rem;
    text-align: center;
    background: var(--yellow);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.yellow-callout strong {
    display: block;
    margin-top: 10px;
    font-size: 0.95rem;
}

/* =====================================================
   SERVIÇOS ESPECIALIZADOS
===================================================== */

.specialized {
    padding: 0 0 90px;
    background: #fafafa;
}

.specialized-inner {
    display: grid;
    grid-template-columns: 0.8fr 3.2fr;
    gap: 24px;
    align-items: center;
    padding: 34px;
    color: var(--white);
    background: linear-gradient(135deg, var(--red), var(--red2));
    border-radius: 24px;
}

.spec-title span {
    color: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.spec-title h2 {
    margin: 0;
    font-size: 2.6rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.spec-grid div {
    display: flex;
    min-height: 130px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    font-size: 1.8rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
}

.spec-grid span {
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 800;
}

/* =====================================================
   SOBRE
===================================================== */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.store-visual {
    overflow: hidden;
    background: #dddddd;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.store-sign {
    padding: 24px;
    text-align: center;
    background: var(--yellow);
    border-bottom: 8px solid var(--red);
}

.store-sign img {
    width: auto;
    max-height: 120px;
}

.store-front {
    position: relative;
    height: 320px;
    background: #c9b59c;
}

.door {
    position: absolute;
    bottom: 0;
    left: 110px;
    width: 130px;
    height: 250px;
    background: #222222;
}

.window {
    position: absolute;
    bottom: 40px;
    left: 255px;
    width: 160px;
    height: 180px;
    background: #303b43;
}

.gate {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 220px;
    background: repeating-linear-gradient(
        90deg,
        var(--red) 0 8px,
        transparent 8px 18px
    );
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 28px;
}

.quality-grid div {
    text-align: center;
}

.quality-grid b {
    display: block;
    margin-top: 8px;
    font-size: 0.8rem;
}

/* =====================================================
   BENEFÍCIOS
===================================================== */

.benefits {
    padding: 28px 0 72px;
}

.benefit-title {
    margin-bottom: 22px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    padding: 22px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.benefit-row div {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
}

.benefit-row span {
    font-size: 0.8rem;
    font-weight: 800;
}

/* =====================================================
   CONTATO
===================================================== */

.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 22px;
}

.contact-box,
.address-box,
.map-box {
    padding: 28px;
    background: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-box a,
.contact-box span {
    display: block;
    margin: 12px 0;
    font-weight: 800;
}

.map-box {
    display: flex;
    min-height: 290px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dff4ff, #a8ddf6);
}

.map-box span {
    font-size: 4rem;
}

.map-box strong {
    font-size: 1.35rem;
}

.map-box small {
    margin-top: 4px;
}

/* =====================================================
   RODAPÉ
===================================================== */

.site-footer {
    color: var(--white);
    background: #101010;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1.1fr;
    gap: 35px;
    padding: 55px 0;
}

.footer-logo {
    max-width: 240px;
    padding: 8px;
    background: var(--yellow);
    border-radius: 10px;
}

.footer-grid a,
.footer-grid span,
.footer-grid p {
    display: block;
    margin: 7px 0;
    color: #dddddd;
}

.footer-bottom {
    padding: 14px 0;
    color: var(--dark);
    font-weight: 800;
    background: var(--yellow);
}

.content-card {
    padding: 35px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1050px) {
    .header-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 96px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        background: var(--yellow);
        border-bottom: 4px solid var(--red);
    }

    .site-nav.open {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 30px;
    }

    .hero-grid,
    .about-grid,
    .product-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 30px;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-image {
        order: -1;
        min-height: 430px;
        margin-right: 0;
        border-radius: 24px;
    }

    .hero-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-image::before {
        background: linear-gradient(
            180deg,
            rgba(255, 253, 242, 0) 60%,
            rgba(255, 253, 242, 0.78) 100%
        );
    }

    .service-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .specialized-inner {
        grid-template-columns: 1fr;
    }

    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .yellow-callout {
        max-width: 300px;
    }
}

/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 680px) {
    .container {
        width: min(100% - 22px, 1220px);
    }

    .brand {
        width: 190px;
    }

    .hero {
        padding: 24px 0 90px;
    }

    .hero h1 {
        font-size: 3.4rem;
    }

    .hero p {
        font-size: 1.08rem;
    }

    .hero-image {
        min-height: 300px;
    }

    .hero-icons,
    .service-cards,
    .check-columns,
    .quality-grid,
    .benefit-row,
    .footer-grid,
    .spec-grid {
        grid-template-columns: 1fr;
    }

    .hero-icons span {
        text-align: left;
    }

    .service-card > img {
        height: 170px;
    }

    .product-layout {
        gap: 24px;
    }

    .specialized-inner {
        padding: 24px;
    }

    .section {
        padding: 68px 0;
    }

    .store-front {
        height: 250px;
    }

    .door {
        left: 30px;
    }

    .window {
        left: 180px;
        width: 120px;
    }

    .benefit-row div {
        justify-content: flex-start;
    }
}

/* =====================================================
   AJUSTES RESPONSIVOS DO CABEÇALHO
===================================================== */

@media (max-width: 1200px) {
    .site-header .container {
        width: min(1140px, calc(100% - 30px));
    }

    .header-row {
        grid-template-columns: 190px minmax(0, 1fr) 170px;
        gap: 18px;
    }

    .brand {
        width: 190px;
    }

    .brand img,
    .custom-logo {
        max-width: 190px;
        max-height: 74px;
    }

    .menu {
        gap: 17px;
    }

    .menu a {
        font-size: 0.78rem;
    }

    .header-whatsapp {
        width: 170px;
        padding: 9px 11px;
    }
}

@media (max-width: 1050px) {
    .site-header .container {
        width: min(100% - 24px, 980px);
    }

    .header-row {
        min-height: 88px;
        display: flex;
        gap: 16px;
    }

    .brand {
        width: 190px;
        flex: 0 0 190px;
    }

    .brand img,
    .custom-logo {
        max-width: 190px;
        max-height: 72px;
    }

    .header-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .site-nav {
        position: absolute;
        top: 88px;
        right: 0;
        left: 0;
        display: none;
        padding: 20px;
        background: var(--yellow);
        border-bottom: 4px solid var(--red);
    }

    .site-nav.open {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .menu a {
        font-size: 0.9rem;
        text-align: left;
    }
}

@media (max-width: 680px) {
    .site-header .container {
        width: min(100% - 20px, 640px);
    }

    .header-row {
        min-height: 78px;
    }

    .brand {
        width: 165px;
        flex-basis: 165px;
    }

    .brand img,
    .custom-logo {
        max-width: 165px;
        max-height: 64px;
    }

    .site-nav {
        top: 78px;
    }
}

.map-google {
    padding: 0;
    overflow: hidden;
    min-height: 290px;
}

.map-google iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 290px;
    border: 0;
}
/* CORREÇÃO DEFINITIVA DO CABEÇALHO */

.site-header .container {
    width: min(1360px, calc(100% - 40px)) !important;
    max-width: 1360px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.site-header .header-row {
    min-height: 104px !important;
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 28px !important;
}

.site-header .brand {
    display: block !important;
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
    flex: 0 0 220px !important;
    margin: 0 !important;
}

.site-header .brand .custom-logo-link {
    display: block !important;
}

.site-header .brand img,
.site-header .custom-logo {
    display: block !important;
    width: 100% !important;
    max-width: 220px !important;
    max-height: 84px !important;
    margin: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.site-header .site-nav {
    position: static !important;
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    flex: 1 1 auto !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.site-header .menu {
    display: flex !important;
    flex-flow: row nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 28px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .menu li {
    margin: 0 !important;
    padding: 0 !important;
}

.site-header .menu a {
    display: block !important;
    font-size: 0.84rem !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    text-align: center !important;
}

.site-header .header-whatsapp {
    position: static !important;
    display: flex !important;
    width: 190px !important;
    min-width: 190px !important;
    min-height: 68px !important;
    flex: 0 0 190px !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 10px 14px !important;
}

.site-header .menu-toggle {
    display: none !important;
}

/* Menu móvel */

@media (max-width: 1100px) {
    .site-header .container {
        width: calc(100% - 24px) !important;
    }

    .site-header .header-row {
        min-height: 88px !important;
    }

    .site-header .brand {
        width: 190px !important;
        min-width: 190px !important;
        max-width: 190px !important;
        flex-basis: 190px !important;
    }

    .site-header .brand img,
    .site-header .custom-logo {
        max-width: 190px !important;
        max-height: 72px !important;
    }

    .site-header .header-whatsapp {
        display: none !important;
    }

    .site-header .menu-toggle {
        display: block !important;
        margin-left: auto !important;
    }

    .site-header .site-nav {
        position: absolute !important;
        top: 88px !important;
        right: 0 !important;
        left: 0 !important;
        display: none !important;
        padding: 20px !important;
        background: var(--yellow) !important;
        border-bottom: 4px solid var(--red) !important;
    }

    .site-header .site-nav.open {
        display: block !important;
    }

    .site-header .menu {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 14px !important;
    }
}
/* Foto da loja na seção Sobre */

.store-visual {
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #f3f3f3;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.store-photo {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
}

/* Tablet */

@media (max-width: 1050px) {
    .store-visual {
        height: 460px;
    }
}

/* Celular */

@media (max-width: 680px) {
    .store-visual {
        height: 360px;
    }
}
.contact-whatsapp {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    color: #128c7e;
    font-weight: 800;
}

.contact-whatsapp:hover {
    color: #075e54;
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

/* =====================================================
   AJUSTE FINAL DO HERO
   Mantém o título legível sem cobrir ou espremer a foto.
===================================================== */

.hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.hero-copy,
.hero-image {
    min-width: 0;
}

.hero-copy {
    padding-right: 28px;
}

.hero h1 {
    max-width: 720px;
    font-size: clamp(3.1rem, 5.4vw, 6.15rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.hero h1 strong {
    font-size: 0.96em;
}

.hero-image {
    min-height: 610px;
    margin-right: -90px;
}

@media (max-width: 1200px) {
    .hero-grid {
        grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
    }

    .hero h1 {
        max-width: 650px;
        font-size: clamp(3rem, 5vw, 5.45rem);
    }

    .hero-image {
        margin-right: -45px;
    }
}

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero h1 {
        max-width: 760px;
        font-size: clamp(3.1rem, 8vw, 5.5rem);
    }

    .hero-image {
        order: -1;
        min-height: 430px;
        margin-right: 0;
        border-radius: 24px;
    }
}

@media (max-width: 680px) {
    .hero h1 {
        max-width: 100%;
        font-size: clamp(2.6rem, 14vw, 3.8rem);
        line-height: 0.95;
    }

    .hero h1 strong {
        font-size: 0.92em;
    }

    .hero-image {
        min-height: 300px;
    }
}
/* H1 correto no celular */

@media (max-width: 680px) {
    .hero {
        overflow-x: hidden;
    }

    .hero-copy {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-right: 0;
        overflow: visible;
    }

    .hero h1 {
        width: 100%;
        max-width: 100%;
        margin: 10px 0 24px;
        font-size: clamp(2.15rem, 10vw, 3rem);
        line-height: 0.98;
        letter-spacing: -0.04em;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .hero h1 strong {
        display: block;
        width: 100%;
        max-width: 100%;
        font-size: 1em;
        line-height: 1;
        overflow-wrap: normal;
        word-break: normal;
        hyphens: none;
    }

    .hero p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.55;
    }
}