@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&display=swap');

:root {
    --blue: #0756a6;
    --blue-dark: #063b77;
    --blue-deep: #042b5c;
    --yellow: #ffd500;
    --yellow-dark: #ffb700;
    --orange: #ff7a00;
    --text: #14304b;
    --muted: #64778b;
    --soft: #f4f8fc;
    --border: #dce7f1;
    --shadow: 0 24px 60px rgba(6, 59, 119, 0.18);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", Arial, sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

button {
    font: inherit;
}

img {
    max-width: 100%;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 4px solid var(--yellow);
    backdrop-filter: blur(16px);
}

.header-content {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 54px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 4px solid var(--blue);
    border-radius: 14px;
    color: var(--blue);
    background: var(--yellow);
    box-shadow: 0 8px 18px rgba(6, 59, 119, 0.16);
    font-size: 12px;
    font-weight: 900;
}

.brand-copy {
    display: grid;
    line-height: 1;
}

.brand-copy strong {
    color: var(--blue);
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -0.045em;
}

.brand-copy small {
    margin-top: 7px;
    color: var(--orange);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.22em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav > a {
    color: #41566c;
    font-size: 13px;
    font-weight: 800;
    transition: 180ms ease;
}

.site-nav > a:hover {
    color: var(--blue);
}

.login-button {
    padding: 12px 20px;
    border-radius: 11px;
    color: #fff !important;
    background: var(--blue);
    box-shadow: 0 10px 24px rgba(7, 86, 166, 0.2);
}

.login-button:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 10px;
    border: 2px solid var(--blue);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 100%;
    height: 3px;
    margin: 4px 0;
    border-radius: 99px;
    background: var(--blue);
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--blue-deep);
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 28%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(3, 35, 74, 0.95) 0%,
            rgba(3, 42, 88, 0.84) 40%,
            rgba(3, 42, 88, 0.32) 74%,
            rgba(3, 42, 88, 0.12) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 710px;
    padding: 105px 0;
    color: #fff;
}

.hero-kicker {
    display: inline-flex;
    padding: 9px 14px;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    color: var(--yellow);
    background: rgba(5, 47, 99, 0.55);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 24px 0 20px;
    color: #fff;
    font-size: clamp(48px, 6vw, 78px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-transform: uppercase;
    text-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
    display: block;
    color: var(--yellow);
}

.hero-content > p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 600;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    transition: 180ms ease;
}

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

.button-primary,
.button-light {
    color: var(--blue-deep);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    box-shadow: 0 16px 34px rgba(255, 191, 0, 0.28);
}

.button-secondary {
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.72);
    background: rgba(5, 47, 99, 0.44);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 12px;
    font-weight: 800;
}

.highlight-strip {
    position: relative;
    z-index: 8;
    margin-top: -24px;
}

.highlight-grid {
    display: grid;
    grid-template-columns: 1.3fr repeat(3, 1fr);
    overflow: hidden;
    border-radius: 18px;
    background: var(--blue);
    box-shadow: var(--shadow);
}

.highlight-main,
.highlight-item {
    min-height: 112px;
    display: grid;
    align-content: center;
    padding: 22px 26px;
}

.highlight-main {
    color: var(--blue-deep);
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
}

.highlight-main span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.highlight-main strong {
    margin-top: 4px;
    font-size: 18px;
    line-height: 1.2;
}

.highlight-item {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
}

.highlight-item small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.highlight-item strong {
    margin-top: 4px;
    font-size: 14px;
}

.section {
    padding: 96px 0;
}

.forros-section {
    padding-top: 118px;
}

.section-heading {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading-left {
    margin-inline: 0;
    text-align: left;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 4px;
    border-radius: 99px;
    background: var(--yellow);
    box-shadow: 12px 0 0 var(--blue);
}

.section-heading h2,
.benefits-content h2,
.contact-card h2 {
    margin: 14px 0 16px;
    color: var(--blue-deep);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.section-heading p,
.benefits-content > p {
    color: var(--muted);
}

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

.service-card {
    min-height: 290px;
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(6, 59, 119, 0.12);
    transition: 200ms ease;
}

.service-card:hover {
    transform: translateY(-7px);
}

.card-blue {
    color: #fff;
    background: linear-gradient(145deg, #0873d1, #0756a6);
}

.card-orange {
    color: #fff;
    background: linear-gradient(145deg, #ff9a22, #f46a00);
}

.card-yellow {
    color: var(--blue-deep);
    background: linear-gradient(145deg, #ffe44b, #ffc400);
}

.service-number {
    display: block;
    text-align: right;
    font-size: 34px;
    font-weight: 900;
    opacity: 0.35;
}

.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin: 22px 0 36px;
    border: 3px solid currentColor;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 900;
}

.service-card h3 {
    margin: 0 0 10px;
    font-size: 20px;
}

.service-card p {
    margin: 0;
    opacity: 0.84;
    font-size: 13px;
}

.benefits-section {
    background: var(--soft);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 70px;
}

.photo-card {
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border: 10px solid #fff;
    border-radius: 28px;
    background: var(--blue);
    box-shadow: var(--shadow);
}

.photo-card img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    object-position: center 32%;
}

.photo-badge {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 14px;
    color: var(--blue-deep);
    background: var(--yellow);
    font-weight: 900;
    text-transform: uppercase;
}

.benefits-list {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.benefits-list article {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
}

.benefits-list article > span {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 11px;
    color: var(--blue-deep);
    background: var(--yellow);
    font-size: 12px;
    font-weight: 900;
}

.benefits-list h3 {
    margin: 0 0 4px;
    color: var(--blue-deep);
    font-size: 15px;
}

.benefits-list p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.process-section {
    background: #fff;
}

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

.process-grid article {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 14px 36px rgba(6, 59, 119, 0.08);
}

.process-grid article > span {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue-deep);
    background: var(--yellow);
    font-weight: 900;
}

.process-grid h3 {
    margin: 22px 0 8px;
    color: var(--blue-deep);
    font-size: 18px;
}

.process-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
}

.contact-section {
    padding: 28px 0 100px;
}

.contact-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    padding: 48px;
    border-radius: 26px;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(3, 31, 67, 0.95), rgba(7, 86, 166, 0.92)),
        url("fachada-real-casa-do-pvc-iputinga.jpeg") center/cover;
    box-shadow: var(--shadow);
}

.eyebrow-light {
    color: var(--yellow);
}

.contact-card h2 {
    max-width: 720px;
    margin-bottom: 10px;
    color: #fff;
}

.contact-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.contact-actions {
    flex-shrink: 0;
    display: grid;
    gap: 10px;
    text-align: center;
}

.contact-actions strong {
    color: #fff;
    font-size: 13px;
}

.site-footer {
    padding: 64px 0 24px;
    color: rgba(255, 255, 255, 0.72);
    background: var(--blue-deep);
    border-top: 8px solid var(--yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr;
    gap: 60px;
}

.brand-footer .brand-copy strong {
    color: #fff;
}

.footer-grid > div:first-child > p {
    max-width: 430px;
    margin-top: 20px;
    font-size: 14px;
}

.footer-links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links strong {
    margin-bottom: 8px;
    color: var(--yellow);
    font-size: 13px;
    text-transform: uppercase;
}

.footer-links a {
    font-size: 13px;
}

.footer-links a:hover,
.footer-bottom a:hover {
    color: var(--yellow);
}

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

.floating-whatsapp {
    position: fixed;
    z-index: 40;
    right: 22px;
    bottom: 22px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-radius: 999px;
    color: var(--blue-deep);
    background: var(--yellow);
    box-shadow: 0 16px 38px rgba(3, 31, 67, 0.26);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

@media (max-width: 1040px) {
    .site-nav {
        position: fixed;
        inset: 83px 0 auto;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 18px 20px 26px;
        border-bottom: 4px solid var(--yellow);
        background: #fff;
        box-shadow: 0 20px 40px rgba(6, 59, 119, 0.16);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav > a {
        padding: 14px 4px;
        border-bottom: 1px solid var(--border);
    }

    .site-nav .login-button {
        margin-top: 12px;
        padding: 14px 18px;
        text-align: center;
    }

    .menu-button {
        display: block;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: 660px;
    }

    .hero-image {
        object-position: center 24%;
    }

    .hero-overlay {
        background: rgba(3, 35, 74, 0.82);
    }

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

    .highlight-main {
        grid-column: 1 / -1;
    }

    .highlight-item:last-child {
        grid-column: 1 / -1;
    }

    .cards-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-actions {
        text-align: left;
    }

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

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

    .header-content {
        min-height: 74px;
    }

    .brand-icon {
        width: 47px;
        height: 42px;
    }

    .brand-copy strong {
        font-size: 17px;
    }

    .hero {
        min-height: 680px;
    }

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

    .hero h1 {
        font-size: clamp(43px, 13vw, 60px);
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-badges {
        display: grid;
        gap: 7px;
    }

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

    .highlight-main,
    .highlight-item,
    .highlight-item:last-child {
        grid-column: auto;
        min-height: 90px;
    }

    .highlight-item {
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-left: 0;
    }

    .section {
        padding: 76px 0;
    }

    .forros-section {
        padding-top: 94px;
    }

    .section-heading {
        margin-bottom: 34px;
        text-align: left;
    }

    .section-heading h2,
    .benefits-content h2,
    .contact-card h2 {
        font-size: 34px;
    }

    .photo-card,
    .photo-card img {
        min-height: 350px;
    }

    .contact-card {
        padding: 32px 24px;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
    }
}


/* ==================================================
   AGENDAMENTO ONLINE
================================================== */
.hidden {
    display: none !important;
}

.booking-section {
    background:
        radial-gradient(circle at top right, rgba(255, 213, 0, 0.2), transparent 32%),
        var(--soft);
}

.booking-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: start;
}

.booking-availability,
.booking-form,
.booking-success {
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(6, 59, 119, 0.1);
}

.booking-panel-title {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
}

.booking-panel-title > span {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--blue-deep);
    background: var(--yellow);
    font-weight: 900;
}

.booking-panel-title h3 {
    margin: 0 0 3px;
    color: var(--blue-deep);
    font-size: 18px;
}

.booking-panel-title p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.booking-loading,
.booking-empty {
    padding: 20px;
    border: 1px dashed var(--border);
    border-radius: 14px;
    color: var(--muted);
    background: var(--soft);
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.booking-loading.error {
    color: #b91c1c;
    border-color: #fecaca;
    background: #fff1f2;
}

.booking-days {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-height: 330px;
    overflow-y: auto;
    padding-right: 4px;
}

.booking-day-button,
.booking-time-button {
    border: 2px solid var(--border);
    border-radius: 13px;
    color: var(--text);
    background: #fff;
    cursor: pointer;
    transition: 160ms ease;
}

.booking-day-button {
    display: grid;
    gap: 2px;
    padding: 13px 10px;
    text-align: left;
}

.booking-day-button strong {
    color: var(--blue-deep);
    font-size: 12px;
}

.booking-day-button span {
    font-size: 13px;
    font-weight: 900;
}

.booking-day-button small {
    color: var(--muted);
    font-size: 9px;
    font-weight: 800;
}

.booking-day-button:hover,
.booking-day-button.selected,
.booking-time-button:hover,
.booking-time-button.selected {
    border-color: var(--blue);
    background: #eff6ff;
    transform: translateY(-1px);
}

.booking-times {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 18px;
}

.booking-time-button {
    min-width: 76px;
    padding: 10px 13px;
    font-weight: 900;
}

.booking-selected {
    margin: 18px 0 0;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--blue-deep);
    background: #fef9c3;
    font-size: 12px;
    font-weight: 900;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.booking-form label {
    display: grid;
    gap: 7px;
    color: var(--blue-deep);
    font-size: 11px;
    font-weight: 900;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 13px 14px;
    border: 2px solid var(--border);
    border-radius: 11px;
    color: var(--text);
    background: #fff;
    font: inherit;
    font-size: 13px;
    outline: none;
    transition: 160ms ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(7, 86, 166, 0.1);
}

.booking-full-field {
    grid-column: 1 / -1;
}

.booking-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.booking-submit {
    width: 100%;
    margin-top: 18px;
    border: 0;
    cursor: pointer;
}

.booking-submit:disabled {
    cursor: not-allowed;
    filter: grayscale(0.5);
    opacity: 0.58;
    transform: none;
}

.booking-message {
    min-height: 22px;
    margin: 12px 0 0;
    font-size: 12px;
    font-weight: 800;
}

.booking-message.error {
    color: #b91c1c;
}

.booking-success {
    max-width: 760px;
    margin: 24px auto 0;
    border-color: #86efac;
    text-align: center;
}

.booking-success strong {
    color: #166534;
    font-size: 22px;
}

.booking-success p {
    color: var(--text);
    font-weight: 700;
}

.booking-success a {
    color: var(--blue);
    font-size: 13px;
    font-weight: 900;
}

@media (max-width: 900px) {
    .booking-shell {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .booking-availability,
    .booking-form,
    .booking-success {
        padding: 20px;
    }

    .booking-days {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .booking-form-grid {
        grid-template-columns: 1fr;
    }

    .booking-full-field {
        grid-column: auto;
    }
}
