/* Germycal — recriação visual alinhada ao site original */

:root {
    --green: #76bc21;
    --green-dark: #5fa018;
    --white: #ffffff;
    --text-on-white: #2d2d2d;
    --label: #6a6a6a;
    --border: #c8d4b8;
    --font: "Roboto", Sans-serif;
    --container: 1100px;
    --radius-btn: 10px;
    --radius-input: 8px;
    --radius-img: 12px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--text-on-white);
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
    background: var(--white);
    padding: 1.25rem 0 1rem;
    border-bottom: 1px solid rgba(118, 188, 33, 0.12);
}

.header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}

.logo img {
    max-height: 72px;
    width: auto;
}

.header-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-btn);
    min-width: 220px;
    justify-content: flex-start;
    transition: background 0.2s ease;
}

.btn-contact:hover,
.btn-contact:focus-visible {
    background: var(--green-dark);
}

.btn-contact__icon {
    flex-shrink: 0;
    display: flex;
    opacity: 0.95;
}

.btn-contact__text {
    line-height: 1.2;
}

/* ——— Hero ——— */
.hero {
    position: relative;
    background: var(--white);
    padding: 8rem 0 4.5rem;
    overflow: hidden;
}

.hero__grid {
    display: column;
    gap: 2rem 2.5rem;
    align-items: center;
}

.hero__copy{
    width: 100%;
    margin-bottom: -100px;
    position: relative;
    z-index: 2;
    margin-left: 20px;
}


.rule {
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.rule--green {
    background: var(--green);
}

.rule--white {
    background: rgba(255, 255, 255, 0.85);
}

.rule--center {
    margin-left: auto;
    margin-right: auto;
}

.hero__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-family: "Open Sans", Sans-serif;
    font-weight: 800;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.15;
}

.hero__subtitle {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    font-weight: 500;
    color: var(--green);
    max-width: 28ch;
}

.hero__media {
    width: 100%;
    position: relative;
    margin-bottom: -50px;
    z-index: 1;
}

.hero__img-wrap {
    border-radius: var(--radius-img);
    overflow: hidden;
    background: #f5f5f5;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.hero__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background: var(--green);
    clip-path: ellipse(120% 100% at 50% 100%);
    pointer-events: none;
}

/* ——— Highlight (verde) ——— */
.highlight {
    background: var(--green);
    color: var(--white);
    padding: 3.5rem 0 4rem;
    margin-top: -1px;
}

.highlight__inner {
    max-width: 820px;
    margin-inline: auto;
    text-align: left;
}

.highlight__title {
    margin: 0 0 1rem;
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
}

.highlight__lead {
    margin: 0 0 1.25rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.highlight__body p {
    margin: 0 0 1rem;
    font-weight: 400;
    font-size: 0.98rem;
    opacity: 0.98;
}

.highlight__body p:last-child {
    margin-bottom: 0;
}

/* ——— Contact ——— */
.contact {
    padding: 3.5rem 0 4rem;
    background: var(--white);
}

.contact__inner {
    max-width: 880px;
    text-align: center;
}

.contact__title {
    margin: 0 0 2rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--green);
}

.flash {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-input);
    margin: -0.5rem 0 1.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.flash--ok {
    background: rgba(118, 188, 33, 0.12);
    color: var(--green-dark);
}

.flash--err {
    background: #fde8e8;
    color: #b42318;
}

.contact-form {
    text-align: left;
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--label);
    margin-bottom: 0.35rem;
}

.field input,
.field textarea {
    width: 100%;
    font: inherit;
    padding: 0.65rem 0.85rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-input);
    background: var(--white);
    color: var(--text-on-white);
    transition: border-color 0.2s;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(118, 188, 33, 0.2);
}

.field textarea {
    resize: vertical;
    min-height: 140px;
}

.field--checkbox {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-top: 1.25rem;
    margin-bottom: 0;
}

.field--checkbox input {
    width: auto;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.field--checkbox label {
    font-size: 0.72rem;
    line-height: 1.45;
    color: var(--label);
    margin: 0;
}

.inline-link {
    color: var(--green);
    text-decoration: underline;
    font-weight: 600;
}

.inline-link:hover {
    color: var(--green-dark);
}

.btn-submit {
    width: 100%;
    margin-top: 0.25rem;
    padding: 0.9rem 1.25rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--green);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    text-transform: none;
    transition: background 0.2s;
}

.btn-submit:hover,
.btn-submit:focus-visible {
    background: var(--green-dark);
}

/* Honeypot */
.hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form {
    position: relative;
}

/* ——— Footer ——— */
.site-footer {
    background: var(--green);
    color: var(--white);
    padding: 0.85rem 0;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 2rem;
    text-align: center;
}

.footer__copy {
    font-weight: 700;
}

.footer__contact a {
    color: var(--white);
    text-decoration: underline;
}

.footer__contact a:hover {
    opacity: 0.9;
}

/* ——— Página legal (privacidade) ——— */
.legal-page {
    background: var(--white);
    padding: 2.5rem 0 4rem;
}

.legal-page__inner {
    max-width: 720px;
}

.legal-page__meta {
    font-size: 0.85rem;
    color: var(--label);
    margin: 0 0 1.5rem;
}

.legal-page__title {
    margin: 0 0 1.25rem;
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: var(--green);
    line-height: 1.25;
    text-transform: none;
}

.legal-page__intro {
    margin: 0 0 2rem;
    font-size: 1rem;
    color: var(--text-on-white);
}

.legal-page h2 {
    margin: 2rem 0 0.75rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--green-dark);
    text-transform: none;
    letter-spacing: 0;
}

.legal-page h2:first-of-type {
    margin-top: 0;
}

.legal-page p {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    color: var(--text-on-white);
}

.legal-page ul {
    margin: 0 0 1rem;
    padding-left: 1.25rem;
    font-size: 0.95rem;
    color: var(--text-on-white);
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.legal-page li:last-child {
    margin-bottom: 0;
}

.legal-page__back {
    margin: 2.5rem 0 0;
    text-align: center;
}

.legal-page__back-btn {
    display: inline-block;
    width: auto;
    min-width: 200px;
    text-decoration: none;
    text-align: center;
}

/* ——— Responsive ——— */
@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
    }

    .hero__copy {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero__media {
        order: 2;
    }

    .hero__subtitle {
        max-width: none;
    }

    .hero {
        padding-bottom: 4rem;
    }
}

@media (max-width: 640px) {
    .header-inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .logo {
        display: flex;
        justify-content: center;
    }

    .header-actions {
        width: 100%;
    }

    .btn-contact {
        justify-content: center;
        min-width: unset;
        width: 100%;
    }
    .hero__copy{
        margin-bottom: 20px;
    }

    .hero__media {

    }

    .highlight__inner {
        text-align: left;
    }

    .footer-inner {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .btn-contact,
    .btn-submit {
        transition: none;
    }
}
