* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition:
            color 0.2s ease,
            background 0.2s ease,
            border-color 0.2s ease,
            transform 0.2s ease,
            box-shadow 0.2s ease,
            opacity 0.2s ease;
}

:root {
    --bg: #f5f4f1;
    --surface: #ffffff;
    --surface-soft: #faf8f5;
    --text: #171717;
    --text-soft: #5f5f5f;
    --line: #e8e2da;
    --primary: #b40000;
    --primary-dark: #8e0000;
    --primary-soft: rgba(180, 0, 0, 0.08);
    --white: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 18px 50px rgba(0, 0, 0, 0.12);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1120px;
    --header-height: 96px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

#home,
#servicos,
#informacoes,
#trabalhe-conosco,
#contato {
    scroll-margin-top: 120px;
}

body {
    font-family: "Inter", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    padding-top: var(--header-height);
}

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

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

button,
.btn-primary,
.btn-secondary {
    cursor: pointer;
}

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

/* HEADER */
.header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
}

.header-content {
    min-height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 68px;
    width: auto;
    display: block;
}

/* NAV DESKTOP */
.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav a {
    font-weight: 600;
    position: relative;
    padding-bottom: 4px;
}

.nav a:hover {
    color: var(--primary);
}

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

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

/* MENU TOGGLE */
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: #111111;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* BOTÕES */
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
}

.btn-primary {
    background: linear-gradient(145deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 14px 30px rgba(180, 0, 0, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 38px rgba(180, 0, 0, 0.28);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(6px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.18);
}

.nav-mobile-cta {
    display: none;
}

/* HERO */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background: url("../assets/images/hero.jpg") center 30% / cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.55) 0%,
            rgba(0, 0, 0, 0.35) 45%,
            rgba(0, 0, 0, 0.15) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: var(--white);
    padding: 56px 0;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.eyebrow {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(6px);
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 30px;
}

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

/* SEÇÕES */
.section {
    padding: 92px 0;
}

.section-light {
    background: var(--surface-soft);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.section-kicker {
    background: var(--primary-soft);
    color: var(--primary-dark);
}

.section-heading h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 14px;
}

.section-heading p {
    color: var(--text-soft);
    font-size: 1.05rem;
}

/* SERVIÇOS */
.services-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.service-card,
.info-card,
.info-wide-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.service-card {
    padding: 28px;
}

.service-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: var(--shadow-medium);
    border-color: rgba(180, 0, 0, 0.18);
}

.service-badge {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 0.84rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.price-list {
    display: grid;
    gap: 12px;
}

.price-list p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: #faf7f4;
    border: 1px solid #f0e8df;
}

.price-list strong {
    font-size: 1rem;
}

.price-list span {
    font-weight: 700;
    color: var(--primary-dark);
}

/* INFORMAÇÕES */
.info-card {
    padding: 28px;
}

.info-card h3,
.info-wide-card h3,
.footer h3,
.footer h4 {
    letter-spacing: -0.02em;
}

.info-card h3 {
    margin-bottom: 16px;
    font-size: 1.28rem;
}

.info-card ul {
    padding-left: 18px;
    color: var(--text-soft);
}

.info-card li {
    margin-bottom: 10px;
}

.info-wide-card {
    margin-top: 24px;
    padding: 28px;
}

.info-wide-card h3 {
    margin-bottom: 18px;
    font-size: 1.28rem;
}

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

.important-grid p {
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    background: #faf7f4;
    border: 1px solid #f0e8df;
    color: var(--text-soft);
}

/* TRABALHE CONOSCO */
.section-work {
    background: linear-gradient(180deg, #f7f4f1 0%, #f3efea 100%);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

.work-card,
.work-highlight {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.work-card {
    padding: 0;
    overflow: hidden;
}

.work-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(180, 0, 0, 0.18);
}

.work-collapsible.is-open {
    border-color: rgba(180, 0, 0, 0.18);
    box-shadow: var(--shadow-medium);
}

.work-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    color: var(--text);
    -webkit-text-fill-color: var(--text);
    appearance: none;
    -webkit-appearance: none;
}

.work-toggle h3 {
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text);
    -webkit-text-fill-color: var(--text);
}

.work-toggle:visited,
.work-toggle:hover,
.work-toggle:focus,
.work-toggle:active {
    color: var(--text);
    -webkit-text-fill-color: var(--text);
}

.work-toggle h3:visited,
.work-toggle h3:hover,
.work-toggle h3:focus,
.work-toggle h3:active {
    color: var(--text);
    -webkit-text-fill-color: var(--text);
}

.work-toggle-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-soft);
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.work-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px;
    opacity: 0;
}

.work-collapsible.is-open .work-content {
    max-height: 420px;
    padding: 0 28px 28px;
    opacity: 1;
}

.work-collapsible.is-open .work-toggle-icon {
    transform: rotate(45deg);
}

.work-list {
    list-style: none;
    display: grid;
    gap: 12px;
}

.work-list li {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    background: #faf7f4;
    border: 1px solid #f0e8df;
    color: var(--text-soft);
}

.work-highlight {
    padding: 30px;
    background: linear-gradient(135deg, #151515, #242424);
    color: var(--white);
    box-shadow: var(--shadow-medium);
}

.work-highlight-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.work-highlight h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.work-highlight p {
    max-width: 620px;
    color: rgba(255, 255, 255, 0.82);
}

/* MODAL AGENDAMENTO */
.schedule-modal,
.schedule-selector-modal,
.existing-client-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.schedule-modal.is-open,
.schedule-selector-modal.is-open,
.existing-client-modal.is-open {
    display: flex;
}

.schedule-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.45);
    backdrop-filter: blur(3px);
}

.schedule-modal-card {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: calc(100vh - 36px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 22px;
    padding: 22px 20px 18px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.selector-modal-card {
    position: relative;
    z-index: 1;
    width: min(460px, 100%);
    background: #ffffff;
    border-radius: 22px;
    padding: 28px 24px 24px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.selector-modal-actions {
    display: grid;
    gap: 12px;
    margin-top: 20px;
}

.selector-btn {
    width: 100%;
}

.schedule-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    color: #6b7280;
}

.schedule-modal-heading {
    text-align: center;
    margin-bottom: 18px;
}

.schedule-modal-heading h2 {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #111827;
}

.schedule-modal-heading p {
    margin: 4px 0 0;
    color: #6b7280;
}

.schedule-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.form-toggle-row {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.form-toggle {
    display: inline-flex;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
}

.form-toggle button {
    border: none;
    border-radius: 10px;
    padding: 10px 16px;
    background: transparent;
    color: #111827;
    font-weight: 800;
}

.form-toggle button.is-active {
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.10);
}

.modal-form-lines {
    display: grid;
    gap: 10px;
}

.form-line {
    display: grid;
    gap: 10px;
}

.pf-line-name {
    grid-template-columns: 1fr 160px 140px;
}

.pf-line-email,
.pj-line-email,
.form-line-three {
    grid-template-columns: 1fr 1fr 1fr;
}

.pj-line-company {
    grid-template-columns: 2fr 1fr 2fr;
}

.pj-line-contact {
    grid-template-columns: 1fr;
}

.pf-line-address {
    grid-template-columns: 1fr 90px;
}

.form-line-location {
    grid-template-columns: 120px 1fr 70px 1.2fr 1fr;
}

.form-line-phone,
.form-line-schedule {
    grid-template-columns: 1fr 1fr;
}

.form-line input,
.form-line select,
.modal-textarea {
    width: 100%;
    min-height: 42px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 11px 14px;
    background: #ffffff;
    font-family: inherit;
    font-size: 14px;
    color: #111827;
    outline: none;
    box-sizing: border-box;
}

.modal-textarea {
    min-height: 58px;
    resize: none;
}

.form-line input:focus,
.form-line select:focus,
.modal-textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.10);
}

.form-line input[readonly] {
    background: #f9fafb;
    color: #111827;
}

.hidden {
    display: none !important;
}

.schedule-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 14px;
}

.btn-modal-secondary,
.btn-modal-primary {
    min-height: 44px;
    border-radius: 12px;
    padding: 0 18px;
    font-weight: 800;
}

.btn-modal-secondary {
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
}

.btn-modal-primary {
    border: none;
}

.schedule-feedback {
    margin-top: 12px;
    text-align: center;
    font-weight: 700;
    min-height: 22px;
}

.schedule-feedback.success {
    color: #047857;
}

.schedule-feedback.error {
    color: #b91c1c;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

body.modal-open {
    overflow: hidden;
}

.existing-client-info {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 14px;
    display: grid;
    gap: 8px;
}

.existing-client-info p {
    margin: 0;
    color: #374151;
    line-height: 1.45;
}

.existing-client-info strong {
    color: #111827;
}

.existing-step[data-existing-step="schedule"] .form-line {
    margin-bottom: 10px;
}

.existing-step[data-existing-step="schedule"] .modal-textarea {
    min-height: 74px;
}

.existing-client-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.existing-client-row + .existing-client-row {
    margin-top: 10px;
}

.existing-client-row strong {
    color: #111827;
    font-size: 13px;
}

.existing-client-row span {
    color: #374151;
}

/* CTA */
.cta-section {
    padding: 90px 0;
}

.cta-box {
    background: linear-gradient(135deg, #151515, #242424);
    color: var(--white);
    border-radius: 32px;
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: var(--shadow-medium);
}

.cta-box h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    margin-bottom: 12px;
}

.cta-box p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
}

/* FOOTER */
.footer {
    background: #111111;
    color: rgba(255, 255, 255, 0.92);
    padding: 54px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.footer h4 {
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 8px;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
}

.footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-dev {
    margin-top: 14px;
}

.footer-dev a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
}

.footer-dev img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-dev span {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-dev a:hover {
    opacity: 1;
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1001;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #25d366, #169c4b);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

.whatsapp-float img {
    width: 34px !important;
    height: 34px !important;
    max-width: none !important;
    object-fit: contain;
    transform: scale(1.8);
    transform-origin: center;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.34);
}

/* TABLET E MOBILE */
@media (max-width: 1024px) {
    html {
        scroll-padding-top: 0;
    }

    #home,
    #servicos,
    #informacoes,
    #trabalhe-conosco,
    #contato {
        scroll-margin-top: 0;
    }

    body {
        padding-top: 0;
    }

    .header {
        position: sticky;
        top: 0;
        height: auto;
    }

    .header-content {
        position: relative;
        min-height: 88px;
        padding: 12px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 72px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-cta {
        display: none;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #ffffff;
        padding: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0 0 18px 18px;
        box-shadow: var(--shadow-soft);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
    }

    .nav.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        padding: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 12px;
        font-size: 1rem;
    }

    .nav a:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    .nav a:last-child {
        border-bottom: none;
    }

    .nav a::after {
        display: none;
    }

    .nav-mobile-cta {
        display: flex;
        justify-content: center;
        margin-top: 12px;
        background: linear-gradient(145deg, #b40000, #8e0000);
        color: white;
        font-weight: 700;
        border-radius: 999px;
        padding: 14px;
        box-shadow: 0 10px 20px rgba(180, 0, 0, 0.25);
    }

    .hero {
        min-height: 78vh;
    }

    .section {
        padding: 40px 0;
    }

    #servicos.section,
    #informacoes.section,
    #trabalhe-conosco.section {
        padding-top: 34px;
    }

    .section-heading {
        margin-bottom: 20px;
    }

    .services-grid,
    .info-grid,
    .important-grid,
    .footer-grid,
    .work-grid,
    .form-line,
    .pf-line-name,
    .pf-line-email,
    .pj-line-company,
    .pj-line-email,
    .pj-line-contact,
    .pf-line-address,
    .form-line-three,
    .form-line-location,
    .form-line-phone,
    .form-line-schedule {
        grid-template-columns: 1fr;
    }

    }

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

    .logo img {
        height: 62px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

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

    .hero h1 {
        font-size: clamp(2.3rem, 10vw, 3.4rem);
    }

    .hero p {
        font-size: 1rem;
    }

    .section {
        padding: 40px 0;
    }

    #servicos.section,
    #informacoes.section,
    #trabalhe-conosco.section {
        padding-top: 36px;
    }

    .section-heading {
        margin-bottom: 18px;
    }

    .service-card,
    .info-card,
    .info-wide-card,
    .work-highlight {
        padding: 22px;
    }

    .work-card {
        padding: 0;
    }

    .work-toggle {
        padding: 22px;
    }

    .work-content {
        padding: 0 22px;
    }

    .work-collapsible.is-open .work-content {
        padding: 0 22px 22px;
    }

    .cta-box {
        padding: 26px;
        border-radius: 24px;
    }

    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float img {
        width: 32px !important;
        height: 32px !important;
        transform: scale(1.8);
    }

    .footer-dev a {
        gap: 8px;
    }

    .footer-dev img {
        width: 26px;
        height: 26px;
    }

    .footer-dev span {
        font-size: 0.78rem;
    }

    .work-highlight-content,
    .cta-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }

    .work-highlight-content .btn-primary,
    .cta-box .btn-primary {
        width: 100%;
        min-height: 52px;
        border-radius: 999px;
        font-size: 15px;
        text-align: center;
    }

    .work-highlight h3,
    .cta-box h2 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .work-highlight p,
    .cta-box p {
        font-size: 1rem;
        line-height: 1.55;
    }

    .cta-box {
        padding: 30px;
    }
}

input[type="date"] {
    position: relative;
    color: #111827;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

input[type="date"]::before {
    content: "Data desejada";
    color: #111827;
}

input[type="date"]:valid::before {
    content: "";
}

@media (max-width: 768px) {
    .schedule-modal-card {
        overflow-x: hidden;
    }

    .form-line input,
    .form-line select,
    .modal-textarea {
        min-width: 0;
    }

    input[type="date"] {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        font-size: 16px;
        text-align: left;
        appearance: none;
        -webkit-appearance: none;
    }
}