:root {
    --bg: #f7f3ec;
    --surface: #fffdf9;
    --surface-strong: #f1e8da;
    --text: #1d2433;
    --muted: #5d6470;
    --primary: #111a2f;
    --primary-soft: #223352;
    --accent: #c49b5f;
    --accent-strong: #a87f44;
    --line: rgba(17, 26, 47, 0.12);
    --success: #166534;
    --error: #b42318;
    --shadow: 0 24px 60px rgba(17, 26, 47, 0.14);
    --shadow-soft: 0 18px 38px rgba(17, 26, 47, 0.08);
    --radius-lg: 32px;
    --radius-md: 24px;
    --radius-sm: 18px;
    --max-width: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Manrope", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(196, 155, 95, 0.12), transparent 20%),
        linear-gradient(180deg, #f7f2e9 0%, #f4ecdf 45%, #f8f5ef 100%);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(7, 12, 24, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 24;
}

body.menu-open::after {
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

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

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

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

.site-shell {
    position: relative;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 40;
    width: min(100%, calc(var(--max-width) + 96px));
    max-width: calc(var(--max-width) + 96px);
    margin: 0 auto;
    padding: 18px clamp(18px, 4vw, 48px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border-radius: 0;
    isolation: isolate;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: rgba(251, 247, 240, 0.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-bottom: 1px solid rgba(17, 26, 47, 0.1);
    box-shadow: 0 16px 40px rgba(17, 26, 47, 0.08);
    z-index: -1;
}

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

.brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
}

.brand-copy {
    display: grid;
    gap: 2px;
}

.brand-copy strong {
    font-size: 1rem;
    color: var(--primary);
}

.brand-copy small {
    color: var(--muted);
    font-size: 0.82rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-menu a {
    position: relative;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    border: 0;
    background: rgba(17, 26, 47, 0.05);
    color: var(--primary);
    font-size: 1.4rem;
    cursor: pointer;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
    background: rgba(17, 26, 47, 0.1);
    transform: translateY(-2px);
    outline: none;
}

.hero {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    max-width: none;
    padding: 0;
}

.hero-home {
    min-height: clamp(720px, calc(100vh - 84px), 940px);
}

.hero-inner {
    min-height: clamp(420px, 64vh, 620px);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    border-radius: 0;
    box-shadow: 0 28px 70px rgba(17, 26, 47, 0.16);
}

.hero-home .hero-backdrop {
    background:
        linear-gradient(105deg, rgba(8, 13, 25, 0.56) 0%, rgba(12, 20, 38, 0.3) 42%, rgba(17, 26, 47, 0.06) 100%),
        linear-gradient(0deg, rgba(255, 248, 238, 0.18), rgba(255, 248, 238, 0.18)),
        url("../pictures/sariah.jpg") 62% top / cover no-repeat;
}

.hero-inner .hero-backdrop {
    background:
        linear-gradient(105deg, rgba(8, 13, 25, 0.6) 0%, rgba(12, 20, 38, 0.36) 42%, rgba(17, 26, 47, 0.1) 100%),
        linear-gradient(0deg, rgba(255, 248, 238, 0.1), rgba(255, 248, 238, 0.1)),
        url("../pictures/sariah.jpg") center 16% / cover no-repeat;
}

.hero-backdrop::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(7, 12, 24, 0.16) 0%, rgba(7, 12, 24, 0.08) 34%, transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(8, 13, 25, 0.08) 100%),
        linear-gradient(90deg, rgba(196, 155, 95, 0.08), transparent 24%);
}

.hero-grid,
.hero-inner-copy {
    position: relative;
    z-index: 1;
}

.hero-grid {
    min-height: clamp(720px, calc(100vh - 84px), 940px);
    max-width: calc(var(--max-width) + 48px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.9fr);
    align-items: center;
    gap: 44px;
    padding: clamp(36px, 6vh, 72px) clamp(34px, 5vw, 72px) clamp(28px, 5vh, 52px);
}

.hero-inner-copy {
    max-width: calc(var(--max-width) + 48px);
    margin: 0 auto;
    padding: 132px clamp(22px, 5vw, 72px) 76px;
    color: #fff;
}

.hero-copy,
.hero-panel {
    color: #fff;
}

.hero-copy {
    display: grid;
    align-content: center;
    max-width: 760px;
    text-shadow: 0 12px 30px rgba(8, 13, 25, 0.4);
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px 18px;
}

.hero-meta .eyebrow {
    width: fit-content;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(8, 13, 25, 0.34);
    color: #efc37d;
    text-shadow: 0 8px 18px rgba(8, 13, 25, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 14px 28px rgba(8, 13, 25, 0.16);
}

.hero-time-badge {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    min-height: 46px;
    width: fit-content;
    margin-top: 18px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(8, 13, 25, 0.16);
}

.hero-time-label {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 800;
}

.hero-time-badge time {
    color: #fff;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.eyebrow,
.section-kicker,
.panel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
}

.hero h1,
.hero h2,
.section-heading h2,
.section-copy h2,
.cta-box h2,
.contact-sidebar h2,
.form-heading h2,
.admin-title h1,
.crm-login h1 {
    font-family: "Cormorant Garamond", serif;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero h1 {
    max-width: 10.4ch;
    margin-top: 10px;
    font-size: clamp(2.55rem, 4.15vw, 3.9rem);
    line-height: 0.94;
    text-wrap: balance;
    text-shadow: 0 12px 30px rgba(8, 13, 25, 0.34);
}

.hero-inner h1 {
    max-width: min(14.5ch, 58vw);
    font-size: clamp(3rem, 5.1vw, 4.75rem);
    line-height: 0.95;
}

.hero-lead,
.hero-inner p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
}

.hero-inner p {
    max-width: min(42rem, 46vw);
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.6;
}

.hero-lead {
    max-width: 60ch;
    margin-top: 12px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.94);
}

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

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        background 0.32s ease,
        color 0.32s ease,
        border-color 0.32s ease;
    cursor: pointer;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: inherit;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.34), transparent 36%, transparent 64%, rgba(255, 255, 255, 0.2));
    opacity: 0;
    transform: translateX(-24%) skewX(-18deg);
    transition: opacity 0.32s ease, transform 0.48s ease;
    pointer-events: none;
}

.btn:hover {
    transform: translateY(-4px) scale(1.02);
}

.btn:hover::before,
.btn:focus-visible::before {
    opacity: 1;
    transform: translateX(24%) skewX(-18deg);
}

.btn:focus-visible {
    outline: none;
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 0 0 4px rgba(196, 155, 95, 0.2),
        0 22px 48px rgba(17, 26, 47, 0.18);
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #e5bf87);
    color: var(--primary);
    box-shadow: 0 18px 40px rgba(196, 155, 95, 0.3);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: linear-gradient(135deg, #d7ab67, #f0cc97);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.28) inset,
        0 26px 54px rgba(196, 155, 95, 0.38);
}

.btn-urgent {
    min-width: 280px;
    gap: 12px;
    background: linear-gradient(135deg, #d19b46, #f0c37a);
    color: #111a2f;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18) inset,
        0 22px 48px rgba(209, 155, 70, 0.34);
}

.btn-urgent i {
    font-size: 1rem;
}

.btn-urgent:hover,
.btn-urgent:focus-visible {
    background: linear-gradient(135deg, #c88626, #f2b867);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.22) inset,
        0 28px 56px rgba(200, 134, 38, 0.42);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.34);
    box-shadow:
        0 18px 40px rgba(10, 16, 30, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.btn-muted {
    background: var(--surface-strong);
    color: var(--primary);
}

.btn-muted:hover,
.btn-muted:focus-visible {
    background: linear-gradient(135deg, #f8f0e3, #eedec4);
    box-shadow: 0 18px 40px rgba(17, 26, 47, 0.16);
}

.btn-danger {
    background: linear-gradient(135deg, #d46357, #ea8d74);
    color: #fff;
    box-shadow: 0 16px 32px rgba(180, 35, 24, 0.2);
}

.btn-danger:hover,
.btn-danger:focus-visible {
    background: linear-gradient(135deg, #c5473e, #df775e);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.16) inset,
        0 22px 40px rgba(180, 35, 24, 0.24);
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 14px;
}

.hero-points div,
.panel-card {
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 0;
}

.hero-points div {
    padding: 16px 18px;
    border-radius: var(--radius-md);
}

.hero-points strong {
    display: block;
    margin-bottom: 8px;
    font-size: 0.98rem;
}

.hero-points span {
    display: block;
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.92rem;
    line-height: 1.55;
}

.hero-panel {
    display: grid;
    gap: 16px;
    align-self: center;
}

.panel-card {
    padding: 34px;
    background: rgba(251, 247, 240, 0.88);
    border: 1px solid rgba(196, 155, 95, 0.24);
    color: var(--primary);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(8, 13, 25, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.panel-card h2 {
    margin: 12px 0 18px;
    font-size: 2rem;
    color: var(--primary);
}

.panel-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.panel-list li {
    position: relative;
    padding-left: 18px;
    color: var(--muted);
    line-height: 1.65;
}

.panel-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 64px 24px;
}

.section-compact {
    padding-top: 26px;
    padding-bottom: 6px;
}

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

.trust-strip div {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(17, 26, 47, 0.07);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.trust-strip i {
    color: var(--accent-strong);
    font-size: 1.2rem;
}

.content-grid,
.two-column-layout,
.contact-layout {
    display: grid;
    gap: 28px;
}

.content-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    align-items: center;
}

.section-copy h2,
.section-heading h2,
.cta-box h2,
.contact-sidebar h2,
.form-heading h2 {
    color: var(--primary);
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 1;
    margin-top: 10px;
}

.section-copy p,
.feature-card p,
.service-card p,
.profile-copy p,
.timeline-item p,
.faq-card p,
.contact-sidebar p,
.form-heading p,
.checklist-card li,
.service-details li,
.icon-list li,
.crm-help,
.metric-card span,
.lead-meta span,
.lead-message {
    color: var(--muted);
    line-height: 1.75;
}

.profile-card,
.feature-card,
.service-card,
.faq-card,
.contact-card,
.info-panel,
.checklist-card,
.card-form,
.crm-shell,
.crm-login,
.metric-card,
.lead-card,
.empty-state {
    background: rgba(255, 253, 249, 0.86);
    border: 1px solid rgba(17, 26, 47, 0.08);
    box-shadow: var(--shadow-soft);
    border-radius: var(--radius-lg);
}

.profile-card {
    overflow: hidden;
}

.profile-image {
    width: 100%;
    aspect-ratio: 4 / 4.7;
    height: auto;
    object-fit: cover;
    object-position: center top;
    background: linear-gradient(180deg, #efe6d8, #f8f4ed);
}

.profile-copy,
.feature-card,
.service-card,
.faq-card,
.info-panel,
.checklist-card,
.card-form,
.crm-shell,
.crm-login,
.metric-card,
.lead-card,
.empty-state {
    padding: 28px;
}

.lead-card {
    padding: 18px;
}

.profile-title {
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
}

.text-link {
    display: inline-flex;
    align-items: center;
    margin-top: 14px;
    color: var(--accent-strong);
    font-weight: 800;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 24px;
}

.feature-grid,
.service-grid,
.faq-grid {
    display: grid;
    gap: 22px;
}

.feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.faq-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card i,
.contact-card i,
.metric-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--surface-strong);
    color: var(--accent-strong);
    font-size: 1.2rem;
    margin-bottom: 18px;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease,
        color 0.28s ease;
}

.feature-card h3,
.service-card h3,
.faq-card h3,
.timeline-item h3,
.checklist-card h3,
.info-panel h3,
.metric-card strong,
.lead-header h3 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.section-dark {
    position: relative;
    max-width: calc(var(--max-width) + 48px);
    padding: 62px clamp(30px, 4vw, 50px);
}

.section-dark>* {
    position: relative;
    z-index: 1;
}

.section-dark::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #10182c, #203457 64%, #2d456d);
    box-shadow: var(--shadow);
}

.section-dark .section-heading h2,
.section-dark .section-kicker,
.section-dark p,
.section-dark h2,
.section-dark h3,
.section-dark li {
    color: #fff;
}

.section-dark .service-card,
.section-dark .checklist-card {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.service-tag,
.lead-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--accent-strong);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.section-dark .service-tag {
    background: rgba(196, 155, 95, 0.16);
    color: #f3d19b;
}

.service-details,
.icon-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 16px 0 24px;
}

.icon-list li,
.service-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.65;
}

.icon-list i {
    margin-top: 6px;
    color: var(--accent);
}

.timeline {
    display: grid;
    gap: 18px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    padding: 28px;
    background: rgba(255, 253, 249, 0.74);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.timeline-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
}

.section-cta {
    padding-top: 18px;
}

.cta-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    padding: 34px;
    background:
        linear-gradient(135deg, rgba(17, 26, 47, 0.96), rgba(37, 56, 89, 0.92)),
        url("../pictures/logo.jpg") right bottom / 180px no-repeat;
    color: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cta-box h2,
.cta-box p {
    color: #fff;
}

.footer {
    max-width: calc(var(--max-width) + 48px);
    margin: 0 auto;
    padding: 0 24px 34px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.footer>div {
    padding: 24px;
    background: rgba(255, 253, 249, 0.8);
    border: 1px solid rgba(17, 26, 47, 0.08);
    border-radius: var(--radius-md);
}

.footer strong,
.footer a,
.footer span {
    display: block;
}

.footer strong,
.footer a {
    color: var(--primary);
    font-weight: 800;
}

.footer p,
.footer span {
    color: var(--muted);
    line-height: 1.7;
}

.footer a+a,
.footer a+span,
.footer p+a {
    margin-top: 10px;
}

.float-whatsapp,
.float-call {
    overflow: hidden;
    position: fixed;
    bottom: 24px;
    z-index: 25;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 1.45rem;
    box-shadow: 0 20px 40px rgba(17, 26, 47, 0.24);
    transition:
        transform 0.32s ease,
        box-shadow 0.32s ease,
        filter 0.32s ease;
}

.float-whatsapp::before,
.float-call::before {
    content: "";
    position: absolute;
    inset: -35%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0) 62%);
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.32s ease, transform 0.4s ease;
}

.float-whatsapp i,
.float-call i {
    position: relative;
    z-index: 1;
    transition: transform 0.32s ease;
}

.float-whatsapp:hover,
.float-whatsapp:focus-visible,
.float-call:hover,
.float-call:focus-visible {
    outline: none;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 28px 54px rgba(17, 26, 47, 0.3);
    filter: saturate(1.08);
}

.float-whatsapp:hover::before,
.float-whatsapp:focus-visible::before,
.float-call:hover::before,
.float-call:focus-visible::before {
    opacity: 1;
    transform: scale(1);
}

.float-whatsapp:hover i,
.float-whatsapp:focus-visible i,
.float-call:hover i,
.float-call:focus-visible i {
    transform: scale(1.12) rotate(-8deg);
}

.float-whatsapp {
    right: 24px;
    background: #25d366;
}

.float-call {
    left: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
}

.contact-layout {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
}

.contact-sidebar,
.form-shell {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 22px;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease,
        background 0.28s ease;
}

.contact-card,
.info-panel,
.checklist-card,
.card-form,
.crm-shell,
.crm-login,
.metric-card,
.lead-card,
.empty-state,
.lead-message {
    border-radius: var(--radius-lg);
}

.contact-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(245, 236, 220, 0.96));
    border-color: rgba(196, 155, 95, 0.24);
    box-shadow: 0 22px 44px rgba(17, 26, 47, 0.12);
}

.contact-card strong,
.info-panel h3 {
    display: block;
    margin-bottom: 8px;
}

.contact-card a {
    color: var(--accent-strong);
    font-weight: 800;
}

.contact-card:hover i {
    transform: translateY(-3px) scale(1.08);
    background: linear-gradient(135deg, var(--accent), #e5bf87);
    color: var(--primary);
    box-shadow: 0 16px 30px rgba(196, 155, 95, 0.28);
}

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

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

.input-group {
    display: grid;
    gap: 10px;
}

.input-group span {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select,
.crm-login input,
.lead-card select,
.lead-card textarea,
.crm-filter select {
    width: 100%;
    min-height: 50px;
    padding: 0 16px;
    border: 1px solid rgba(17, 26, 47, 0.12);
    border-radius: var(--radius-sm);
    background: #fff;
    color: var(--primary);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form textarea,
.lead-card textarea {
    min-height: 110px;
    padding-top: 14px;
    padding-bottom: 14px;
    resize: vertical;
}

.lead-card select,
.lead-card textarea {
    min-height: 46px;
}

.lead-card textarea {
    min-height: 98px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.crm-login input:focus,
.lead-card select:focus,
.lead-card textarea:focus,
.crm-filter select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(196, 155, 95, 0.18);
}

.checkbox-row {
    display: flex;
    gap: 12px;
    margin-top: 8px;
    line-height: 1.6;
    color: var(--muted);
}

.checkbox-row input {
    width: 18px;
    min-height: 18px;
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    margin-top: 20px;
}

.form-status {
    min-height: 24px;
    margin-top: 14px;
    font-weight: 700;
}

.form-status.is-success {
    color: var(--success);
}

.form-status.is-error {
    color: var(--error);
}

.fade-in {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

.admin-body {
    background:
        radial-gradient(circle at top left, rgba(196, 155, 95, 0.12), transparent 16%),
        linear-gradient(180deg, #f8f3ea 0%, #efe5d7 100%);
}

.admin-wrap {
    max-width: calc(var(--max-width) + 120px);
    margin: 0 auto;
    padding: 32px 24px 72px;
}

.admin-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.admin-title p {
    margin-top: 10px;
    color: var(--muted);
    max-width: 58ch;
    line-height: 1.7;
}

.admin-title h1,
.crm-login h1 {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    line-height: 0.98;
}

.crm-login {
    max-width: 560px;
    margin: 56px auto 0;
}

.crm-login form {
    display: grid;
    gap: 16px;
    margin-top: 22px;
}

.crm-shell[hidden],
.crm-login[hidden],
.empty-state[hidden] {
    display: none;
}

.crm-toolbar,
.crm-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.crm-toolbar p {
    color: var(--muted);
}

.crm-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
}

.crm-notification-panel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    padding: 22px 24px;
    background: rgba(255, 253, 249, 0.96);
    border: 1px solid rgba(17, 26, 47, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.crm-notification-panel[hidden] {
    display: none;
}

.crm-notification-panel h3 {
    margin-top: 8px;
    color: var(--primary);
    font-size: 1.18rem;
}

.crm-notification-panel p {
    margin-top: 8px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 56ch;
}

.crm-notification-panel.is-error {
    border-color: rgba(153, 27, 27, 0.16);
    background: rgba(255, 248, 248, 0.98);
}

.crm-notification-panel.is-error h3,
.crm-notification-panel.is-error p {
    color: #7f1d1d;
}

.crm-notice {
    margin-bottom: 20px;
    padding: 14px 18px;
    background: rgba(17, 26, 47, 0.92);
    color: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 18px 36px rgba(17, 26, 47, 0.16);
}

.crm-notice.is-success {
    background: rgba(22, 101, 52, 0.94);
}

.crm-notice.is-info {
    background: rgba(17, 26, 47, 0.92);
}

.crm-notice.is-error {
    background: rgba(153, 27, 27, 0.94);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 28px;
}

.metric-card {
    min-height: 174px;
}

.metric-card strong {
    display: block;
    margin-top: 12px;
    font-size: 2rem;
    font-family: "Cormorant Garamond", serif;
}

.lead-list {
    display: grid;
    gap: 14px;
}

.lead-header,
.lead-meta,
.lead-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.lead-header {
    justify-content: space-between;
    margin-bottom: 8px;
}

.lead-meta {
    margin-bottom: 10px;
}

.lead-message {
    margin-bottom: 12px;
    padding: 12px 14px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    line-height: 1.45;
}

.lead-form {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.lead-actions {
    margin-top: 10px;
    gap: 10px;
}

.lead-actions .btn {
    min-height: 42px;
    padding: 0 15px;
    font-size: 0.96rem;
}

.lead-actions .btn-delete {
    gap: 8px;
}

.lead-save-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    margin-left: auto;
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.lead-save-status::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.9;
}

.lead-save-status.is-saving {
    color: #8a5d12;
}

.lead-save-status.is-saved {
    color: #166534;
}

.lead-save-status.is-error {
    color: #991b1b;
}

.lead-actions .btn-whatsapp {
    background: linear-gradient(135deg, #20c45a, #38d46d);
    color: #082614;
    border: 1px solid rgba(18, 102, 46, 0.14);
    box-shadow: 0 12px 26px rgba(32, 196, 90, 0.18);
}

.lead-actions .btn-whatsapp:hover,
.lead-actions .btn-whatsapp:focus-visible {
    background: linear-gradient(135deg, #18b14e, #33c965);
    border-color: rgba(18, 102, 46, 0.2);
    box-shadow: 0 18px 34px rgba(24, 177, 78, 0.24);
}

.lead-header h3 {
    margin-bottom: 6px;
    font-size: 1rem;
}

.lead-meta span,
.lead-message {
    font-size: 0.92rem;
}

.lead-badge.is-alta {
    background: rgba(180, 35, 24, 0.12);
    color: #991b1b;
}

.lead-badge.is-media {
    background: rgba(196, 155, 95, 0.18);
    color: #8a5d12;
}

.lead-badge.is-normal {
    background: rgba(22, 101, 52, 0.12);
    color: #166534;
}

.confirm-modal[hidden] {
    display: none;
}

.confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: grid;
    place-items: center;
    padding: 24px;
}

.confirm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 13, 25, 0.48);
    backdrop-filter: blur(6px);
}

.confirm-modal-card {
    position: relative;
    z-index: 1;
    width: min(100%, 520px);
    padding: 28px;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid rgba(17, 26, 47, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(17, 26, 47, 0.2);
}

.confirm-modal-card h2 {
    margin-top: 10px;
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 2.7rem);
}

.confirm-modal-card p + p {
    margin-top: 12px;
}

.confirm-modal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
}

.empty-state {
    text-align: center;
}

.empty-state h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

@media (max-width: 1080px) {
    .hero-home {
        min-height: clamp(640px, calc(100vh - 84px), 820px);
    }

    .hero-grid,
    .content-grid,
    .contact-layout,
    .feature-grid,
    .service-grid,
    .service-grid-expanded,
    .faq-grid,
    .metric-grid,
    .lead-form,
    .trust-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-points {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        min-height: clamp(640px, calc(100vh - 84px), 820px);
        align-items: center;
        padding-top: clamp(36px, 5vh, 60px);
        padding-bottom: clamp(30px, 4vh, 44px);
    }

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

@media (max-width: 920px) {
    .lead-form {
        grid-template-columns: 1fr;
    }

    .admin-topbar {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .navbar {
        padding: 14px 18px;
        width: 100%;
        max-width: none;
        border-radius: 0;
    }

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

    .nav-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 18px;
        right: 18px;
        width: auto;
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 6px;
        background: rgba(251, 247, 240, 0.99);
        border: 1px solid rgba(17, 26, 47, 0.08);
        box-shadow: 0 20px 44px rgba(17, 26, 47, 0.14);
        transform: translateY(-10px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.24s ease, opacity 0.24s ease, visibility 0.24s ease;
        z-index: 45;
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }

    .nav-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu a {
        width: 100%;
        display: flex;
        align-items: center;
        min-height: 56px;
        padding: 0 6px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(17, 26, 47, 0.08);
    }

    .nav-menu li:last-child a {
        border-bottom: 0;
    }

    .nav-menu a::after {
        bottom: 10px;
    }

    .hero {
        min-height: auto;
        margin-top: 0;
        padding: 0;
    }

    .hero-backdrop {
        inset: 0;
        background-color: #d8d1c7;
        background:
            linear-gradient(180deg, rgba(8, 13, 25, 0.8), rgba(13, 22, 40, 0.58) 42%, rgba(17, 26, 47, 0.34) 100%),
            linear-gradient(0deg, rgba(255, 248, 238, 0.06), rgba(255, 248, 238, 0.06)),
            url("../pictures/sarah1.jpg") 38% 18% / cover no-repeat;
        border-radius: 0;
    }

    .hero-grid,
    .hero-inner-copy,
    .section,
    .admin-wrap,
    .footer {
        padding-left: 18px;
        padding-right: 18px;
    }

    .hero-grid,
    .content-grid,
    .contact-layout,
    .feature-grid,
    .service-grid,
    .service-grid-expanded,
    .faq-grid,
    .metric-grid,
    .trust-strip,
    .form-grid,
    .lead-form,
    .footer {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 24px;
        padding-top: 28px;
        padding-bottom: 34px;
    }

    .hero h1 {
        max-width: 11ch;
        font-size: clamp(2.45rem, 8.8vw, 3.35rem);
        line-height: 0.98;
    }

    .hero-lead {
        margin-top: 12px;
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .hero-actions {
        margin-top: 14px;
        gap: 12px;
    }

    .hero-meta,
    .hero-points {
        margin-top: 14px;
        gap: 12px;
    }

    .hero-time-badge {
        margin-top: 14px;
    }

    .hero-inner-copy {
        padding-top: 118px;
        padding-bottom: 58px;
    }

    .hero h1,
    .hero-inner h1 {
        max-width: 100%;
        font-size: clamp(2.8rem, 12vw, 4.2rem);
    }

    .section-dark::before {
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .footer {
        padding-bottom: 88px;
    }

    .float-whatsapp,
    .float-call {
        width: 54px;
        height: 54px;
        bottom: 16px;
    }

    .float-whatsapp {
        right: 16px;
    }

    .float-call {
        left: 16px;
    }

    .admin-topbar,
    .crm-toolbar,
    .crm-filter,
    .crm-notification-panel,
    .lead-header,
    .lead-meta,
    .lead-actions {
        align-items: flex-start;
    }

    .panel-card {
        min-height: auto;
    }

    .hero-panel {
        display: none;
    }

    .btn-urgent {
        min-width: 0;
    }

    .crm-login,
    .crm-shell,
    .lead-card,
    .metric-card,
    .card-form,
    .feature-card,
    .service-card,
    .faq-card,
    .profile-card,
    .info-panel,
    .checklist-card,
    .contact-card,
    .empty-state,
    .lead-message,
    .footer>div,
    .trust-strip div,
    .cta-box,
    .section-dark,
    .section-dark::before {
        border-radius: 24px;
    }

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

    .lead-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lead-actions .btn,
    .lead-actions a {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .brand-copy small {
        display: none;
    }

    .hero-grid {
        padding-top: 24px;
        padding-bottom: 46px;
    }

    .hero-backdrop {
        background-position: 36% 14%;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}
