:root {
    --love-primary: #e63956;
    --love-primary-dark: #c92f49;
    --love-secondary: #ff6b8a;
    --love-bg: #fff4f7;
    --love-dark: #2b2b2b;
    --love-text: #555;
    --love-card: #ffffff;
    --love-shadow: 0 12px 35px rgba(230, 57, 86, 0.18);
}
body {
    background:
        radial-gradient(circle at top center,
            rgba(255,255,255,.95),
            transparent 35%),
        linear-gradient(
            180deg,
            #fff4f7 0%,
            #ffffff 240px,
            #f8f9fa 100%);
    font-family: "Inter", Arial, sans-serif;
    color: var(--love-dark);
}

.hero {
    min-height: 94vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 38%),
        radial-gradient(circle at bottom right, rgba(255, 107, 138, 0.22), transparent 42%);
}

.hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(230, 57, 86, 0.08);
    top: -180px;
    right: -120px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 107, 138, 0.10);
    bottom: -140px;
    left: -100px;
}

.hero .container {
    position: relative;
    z-index: 1;
}
.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #dc3545;
}

.hero-title {
    font-size: 3.4rem;
line-height: 1.08;
letter-spacing: -1.5px;
    font-weight: 800;
    color: #2b2b2b;
}

.hero-text {
    font-size: 1.2rem;
    color: #555;
}

.card-feature {
    background: #fff;
    border: 2px solid transparent;
    border-radius: 28px;
    padding: 30px;
    transition: all .35s ease;
    box-shadow: 0 18px 45px rgba(0,0,0,.09);
}

.card-feature i {
    color: var(--love-primary);
    transition: all .35s ease;
}

.card-feature:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: var(--love-primary);
    box-shadow: 0 25px 55px rgba(230,57,86,.30);
    background: linear-gradient(
        180deg,
        #fff,
        #fff7f9
    );
}

.card-feature:hover i {
    transform: scale(1.35) rotate(-8deg);
    color: var(--love-primary-dark);
}

.card-feature h5 {
    margin-top: 20px;
    font-weight: 700;
}

.card-feature p {
    color: #666;
}
.btn-love {
    background: linear-gradient(135deg, var(--love-primary), var(--love-secondary));
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 700;
    transition: all .30s ease;
    box-shadow: 0 10px 25px rgba(230,57,86,.30);
}

.btn-love:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(230,57,86,.45);
    background: linear-gradient(
        135deg,
        var(--love-primary-dark),
        var(--love-primary)
    );
}

.mock-phone {
    background: white;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(220,53,69,0.25);
}

.footer {
    background: #2b2b2b;
    color: white;
}
/* ==========================
   Navbar Premium
========================== */

.navbar {
    background: rgba(255,255,255,.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(230,57,86,.08);
    transition: all .30s ease;
}

.logo{
    font-size:2rem;
    font-weight:800;
    color:var(--love-primary)!important;
    letter-spacing:-1px;
    transition:.3s;
}

.logo:hover{
    transform:scale(1.04);
    color:var(--love-primary-dark)!important;
}

.navbar .btn{
    transition:.30s;
}

.navbar .btn:hover{
    transform:translateY(-2px);
}
.hero-image {
    width: 100%;
    height: 430px;
    object-fit: cover;
    object-position: 72% center;
    border-radius: 40px;
    box-shadow: 0 40px 90px rgba(230,57,86,.26);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 38px 85px rgba(230, 57, 86, 0.30);
}

@media (max-width: 767.98px) {
    .hero-image {
        height: 340px;
        object-position: 70% center;
        border-radius: 24px;
    }
}
/* ==========================
   Por que escolher
========================== */

.why-love {
    background:
        radial-gradient(
            circle at top center,
            rgba(255, 107, 138, 0.12),
            transparent 38%
        ),
        #fff8fa;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(230, 57, 86, 0.10);
    color: var(--love-primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.section-title {
    color: var(--love-dark);
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.section-title span {
    color: var(--love-primary);
}

.section-subtitle {
    max-width: 680px;
    margin: 14px auto 0;
    color: var(--love-text);
    font-size: 1.05rem;
    line-height: 1.7;
}

.benefit-card {
    padding: 32px 26px;
    text-align: center;
    background: #fff;
    border: 1px solid rgba(230, 57, 86, 0.10);
    border-radius: 24px;
    box-shadow: 0 12px 35px rgba(43, 43, 43, 0.07);
    transition: transform 0.35s ease, box-shadow 0.35s ease,
                border-color 0.35s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(230, 57, 86, 0.45);
    box-shadow: 0 24px 55px rgba(230, 57, 86, 0.18);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        var(--love-primary),
        var(--love-secondary)
    );
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 12px 26px rgba(230, 57, 86, 0.25);
    transition: transform 0.35s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08) rotate(-4deg);
}

.benefit-card h4 {
    margin-bottom: 14px;
    color: var(--love-dark);
    font-size: 1.2rem;
    font-weight: 750;
}

.benefit-card p {
    margin-bottom: 0;
    color: var(--love-text);
    line-height: 1.65;
}

@media (max-width: 767.98px) {
    .section-title {
        font-size: 1.9rem;
    }

    .benefit-card {
        padding: 28px 22px;
    }
}
/* ==========================
   Faixa de confiança
========================== */

.trust-strip {
    position: relative;
    z-index: 2;
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid rgba(230, 57, 86, 0.08);
    border-bottom: 1px solid rgba(230, 57, 86, 0.08);
    box-shadow: 0 12px 35px rgba(43, 43, 43, 0.05);
}

.trust-item {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 18px;
    color: var(--love-dark);
    font-weight: 700;
    transition: transform 0.3s ease, background 0.3s ease;
}

.trust-item i {
    color: var(--love-primary);
    font-size: 1.45rem;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-4px);
    background: rgba(230, 57, 86, 0.06);
}

.trust-item:hover i {
    transform: scale(1.15);
}

@media (max-width: 575.98px) {
    .trust-strip {
        padding: 20px 0;
    }

    .trust-item {
        min-height: 72px;
        flex-direction: column;
        gap: 6px;
        padding: 10px;
        font-size: 0.9rem;
    }
}
/* ==========================
   Depoimento institucional
========================== */

.testimonial-section {
    background: #fff;
}

.testimonial-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 52px 60px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(
            circle at top right,
            rgba(255, 107, 138, 0.18),
            transparent 36%
        ),
        linear-gradient(135deg, #fff8fa, #ffffff);
    border: 1px solid rgba(230, 57, 86, 0.12);
    border-radius: 32px;
    box-shadow: 0 22px 60px rgba(230, 57, 86, 0.13);
}

.testimonial-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    left: -80px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(230, 57, 86, 0.07);
}

.testimonial-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: linear-gradient(
        135deg,
        var(--love-primary),
        var(--love-secondary)
    );
    color: #fff;
    font-size: 2rem;
    box-shadow: 0 12px 28px rgba(230, 57, 86, 0.25);
}

.testimonial-text {
    position: relative;
    max-width: 720px;
    margin: 0 auto 28px;
    color: var(--love-dark);
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.7;
}

.testimonial-author {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-align: left;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(230, 57, 86, 0.11);
    color: var(--love-primary);
    font-size: 1.25rem;
}

.testimonial-author strong,
.testimonial-author span {
    display: block;
}

.testimonial-author strong {
    color: var(--love-dark);
}

.testimonial-author span {
    margin-top: 2px;
    color: var(--love-text);
    font-size: 0.9rem;
}

@media (max-width: 767.98px) {
    .testimonial-card {
        padding: 38px 24px;
        border-radius: 26px;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }
}
/* ==========================
   Logotipo oficial
========================== */

.brand-link {
    display: inline-flex;
    align-items: center;
    padding: 0;
    text-decoration: none;
}

.brand-logo {
    display: block;
    width: 250px;
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo {
    transform: scale(1.025);
}

@media (max-width: 575.98px) {
    .brand-logo {
        width: 185px;
    }
}