:root {
    --red: #d71920;
    --red2: #a90f14;
    --dark: #131722;
    --text: #1f2937;
    --muted: #667085;
    --soft: #f4f6f8;
    --card: #fff;
    --line: #e5e9f0;
    --shadow: 0 24px 70px rgba(17,24,39,.10);
    --radius: 20px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Montserrat,Bahnschrift,Arial,sans-serif;
    color: var(--text);
    background: #f5f7fa;
    font-weight: 400
}

.container {
    width: min(1180px,92%);
    margin: auto
}

.center {
    text-align: center
}

.site-header {
    height: 76px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    padding: 0 7%;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: 0 1px 0 rgba(10,20,35,.08)
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    margin-right: auto
}

.brand span:first-child {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #ffe8e9;
    color: var(--red)
}

.brand strong {
    font-size: 23px;
    font-weight: 600;
    letter-spacing: -.7px
}

.brand strong span {
    color: var(--red);
    background: transparent
}

.main-nav {
    display: flex;
    gap: 8px;
    align-items: center
}

.main-nav a {
    padding: 12px 16px;
    border-radius: 14px;
    text-decoration: none;
    color: #596275;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    align-items: center
}

.main-nav a i {
    display: none
}

.main-nav a.active,.main-nav a:hover {
    background: #ffe8e9;
    color: var(--red)
}

.header-whatsapp {
    background: var(--red);
    color: #fff;
    text-decoration: none;
    padding: 13px 18px;
    border-radius: 16px;
    font-weight: 600;
    display: flex;
    gap: 8px
}

.nav-toggle {
    display: none;
    border: 0;
    background: #ffe8e9;
    color: var(--red);
    font-size: 20px;
    border-radius: 12px;
    padding: 10px
}

.hero {
    min-height: 760px;
    background: linear-gradient(180deg,rgba(0,0,0,.78),rgba(0,0,0,.45),rgba(245,247,250,1)),url('../img/hero.svg') center/cover no-repeat;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
    padding: 90px 0 70px
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(215,25,32,.9);
    background: rgba(215,25,32,.15);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    backdrop-filter: blur(8px)
}

.hero h1 {
    font-size: clamp(48px,7vw,92px);
    line-height: .98;
    letter-spacing: -4px;
    margin: 34px 0 24px;
    font-weight: 600
}

.hero h1 span {
    color: var(--red)
}

.hero p {
    font-size: clamp(18px,2vw,24px);
    line-height: 1.55;
    width: min(780px,92%);
    margin: 0 auto 34px;
    color: #f5f5f5;
    font-weight: 500
}

.actions {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 13px;
    padding: 18px 28px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: .25s;
    font-family: inherit
}

.btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 16px 35px rgba(215,25,32,.25)
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--red2)
}

.btn-white,.btn-light {
    background: #fff;
    color: #111827
}

.section {
    padding: 78px 0
}

.section-title {
    text-align: center;
    margin-bottom: 48px
}

.section-title h2 {
    font-size: clamp(32px,4vw,46px);
    line-height: 1.05;
    margin: 0 0 14px;
    color: #111827;
    font-weight: 600;
    letter-spacing: -1.5px
}

.section-title p {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0 auto;
    width: min(760px,92%);
    font-weight: 500
}

.form-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 38px;
    border: 1px solid var(--line);
    width: min(960px,92%);
    margin: auto
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

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

.field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 9px;
    color: #1f2937
}

.field label span {
    color: var(--red)
}

input,select,textarea {
    width: 100%;
    border: 1px solid #ccd4df;
    border-radius: 12px;
    padding: 15px 16px;
    font: 500 15px Montserrat,Arial,sans-serif;
    color: #344054;
    background: #fbfcfe;
    outline: none;
    transition: .2s
}

input:focus,select:focus,textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 4px rgba(215,25,32,.10)
}

textarea {
    min-height: 120px;
    resize: vertical
}

.privacy {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5
}

.privacy input {
    width: 18px;
    height: 18px;
    margin-top: 3px
}

.form-status {
    display: none;
    margin-top: 18px;
    border-radius: 14px;
    padding: 16px;
    background: #eaf9ef;
    color: #0c7132;
    font-weight: 600
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 20px 55px rgba(17,24,39,.06);
    transition: .25s
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: #ffe8e9;
    color: var(--red);
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 20px
}

.card h3 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 600;
    color: #111827
}

.card p,.card li {
    color: var(--muted);
    line-height: 1.7;
    font-weight: 500
}

.testimonials {
    background: #fff
}

.review {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: start
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #ffe8e9;
    color: var(--red);
    display: grid;
    place-items: center;
    font-weight: 600
}

.stars {
    color: var(--red);
    white-space: nowrap
}

.cta-band {
    background: linear-gradient(90deg,rgba(215,25,32,.94),rgba(169,15,20,.92)),url('../img/cta.svg') center/cover;
    color: #fff;
    padding: 84px 0
}

.cta-band h2 {
    font-size: clamp(36px,5vw,58px);
    line-height: 1.08;
    margin: 0 0 18px;
    font-weight: 600;
    letter-spacing: -1px
}

.cta-band p {
    font-size: 20px;
    margin: 0 auto 28px;
    width: min(780px,92%);
    line-height: 1.5
}

.site-footer {
    background: #fff;
    padding: 64px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 70px
}

.site-footer h3 {
    margin: 0 0 24px;
    font-weight: 600
}
.site-footer a { flex-direction:row !important}
.site-footer p,.site-footer a {
    display: flex;
    color: #667085;
    text-decoration: none;
    line-height: 1.8;
    font-weight: 500;
    margin: 0 0 10px;
    justify-content: flex-start;
    flex-direction: column;
    align-items: flex-start;
}

.site-footer i {
    color: var(--red);
    margin-right: 10px
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 46px;
    padding: 20px;
    text-align: center;
    color: #667085
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    text-decoration: none;
    font-size: 26px;
    box-shadow: 0 18px 35px rgba(37,211,102,.3);
    z-index: 60
}

.page-hero {
    padding: 100px 0 70px;
    background: linear-gradient(120deg,#190608,#60070b);
    color: #fff;
    text-align: center
}

.page-hero h1 {
    font-size: clamp(42px,6vw,70px);
    font-weight: 600;
    margin: 0 0 15px
}

.page-hero p {
    font-size: 20px;
    color: #ffe8e9;
    width: min(820px,92%);
    margin: auto;
    line-height: 1.5
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center
}

.image-box {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff
}

.image-box img {
    width: 100%;
    display: block
}

.loading {
    pointer-events: none;
    opacity: .75
}

.loading:after {
    content: '';
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,.45);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .8s linear infinite
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@media(max-width: 950px) {
    .site-header {
        justify-content:space-between;
        padding: 0 4%;
        gap: 12px
    }

    .nav-toggle {
        display: block
    }

    .main-nav {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #fff;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 14px 5%;
        box-shadow: 0 18px 30px rgba(17,24,39,.08)
    }

    .main-nav.open {
        display: flex
    }

    .main-nav a i {
        display: inline-block
    }

    .header-whatsapp span,.main-nav a span {
        display: none
    }

    .main-nav a {
        justify-content: center;
        font-size: 20px
    }

    .hero {
        min-height: 680px
    }

    .grid-4,.grid-3,.footer-grid,.split {
        grid-template-columns: 1fr
    }

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

    .form-card {
        padding: 24px
    }

    .brand strong {
        font-size: 20px
    }

    .section {
        padding: 58px 0
    }
}

@media(max-width: 560px) {
    .hero h1 {
        letter-spacing:-2px
    }

    .actions .btn {
        width: 100%
    }

    .grid-4,.grid-3 {
        gap: 16px
    }

    .card {
        padding: 24px
    }

    .footer-grid {
        gap: 30px
    }

    .header-whatsapp {
        padding: 12px
    }

    .form-card {
        width: 94%
    }
}
