/* =========================================================
   LS CORRETORA
   STYLE.CSS
   Desktop + Tablet + Android + iOS
========================================================= */

:root {
    --navy: #0f2034;
    --navy-dark: #091727;
    --navy-light: #183149;

    --teal: #3f8992;
    --teal-dark: #31747c;
    --teal-light: #67aeb4;

    --white: #ffffff;

    --background: #f7f9fb;
    --background-alt: #eef4f5;

    --text: #172536;
    --text-light: #667281;

    --border: #dfe7eb;

    --shadow-sm: 0 8px 25px rgba(11, 30, 50, 0.06);
    --shadow-md: 0 15px 40px rgba(11, 30, 50, 0.10);
    --shadow-lg: 0 25px 70px rgba(11, 30, 50, 0.15);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;

    --transition: 0.3s ease;
}


/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    margin: 0;
    padding: 0;

    scroll-behavior: smooth;
    scroll-padding-top: 90px;

    -webkit-text-size-adjust: 100%;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;

    font-family: "Inter", sans-serif;

    color: var(--text);
    background: var(--white);

    line-height: 1.6;

    overflow-x: hidden;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open,
body.modal-open {
    overflow: hidden;
}

main {
    width: 100%;
    margin: 0;
    padding: 0;
}

img,
svg,
video,
iframe {
    display: block;
    max-width: 100%;
}

img {
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;

    -webkit-tap-highlight-color: transparent;
}

button {
    border: none;

    font-family: inherit;

    cursor: pointer;

    -webkit-tap-highlight-color: transparent;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 105px 0;
}


/* =========================================================
   TÍTULOS
========================================================= */

.section-heading {
    max-width: 720px;
    margin-bottom: 55px;
}

.section-heading h2,
.about-content h2,
.faq-heading h2,
.benefits-header h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);

    line-height: 1.1;
    letter-spacing: -0.045em;

    color: var(--navy);
}

.section-heading h2 span,
.about-content h2 span,
.faq-heading h2 span,
.benefits-header h2 span {
    color: var(--teal);
}

.section-heading p,
.faq-heading > p {
    margin-top: 20px;

    font-size: 1.05rem;

    color: var(--text-light);

    max-width: 650px;
}

.section-kicker {
    display: inline-block;

    margin-bottom: 14px;

    color: var(--teal-dark);

    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;

    font-size: 0.78rem;
}

.section-kicker.light {
    color: var(--teal-light);
}


/* =========================================================
   BOTÕES
========================================================= */

.btn {
    min-height: 52px;

    padding: 0 24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 12px;

    font-weight: 700;
    font-size: 0.92rem;

    position: relative;

    overflow: hidden;

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        background var(--transition),
        border-color var(--transition);
}

.btn::before {
    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 80%;
    height: 100%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent
        );

    transform: skewX(-20deg);

    transition: left 0.65s ease;
}

.btn:hover::before {
    left: 140%;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--teal);
    color: var(--white);

    box-shadow:
        0 14px 32px rgba(63, 137, 146, 0.25);
}

.btn-primary:hover {
    background: var(--teal-dark);

    box-shadow:
        0 18px 38px rgba(63, 137, 146, 0.32);
}

.btn-header {
    background: var(--teal);
    color: var(--white);
}

.btn-outline-light {
    border: 1px solid rgba(255, 255, 255, 0.35);

    color: var(--white);

    background:
        rgba(255, 255, 255, 0.04);
}

.btn-outline-light:hover {
    background:
        rgba(255, 255, 255, 0.10);
}

.btn-white {
    background: var(--white);
    color: var(--navy);

    white-space: nowrap;
}

.btn-white:hover {
    box-shadow: var(--shadow-md);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    width: 100%;

    height: 84px;

    display: flex;
    align-items: center;

    background:
        rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    z-index: 1000;

    transition:
        box-shadow var(--transition),
        height var(--transition);
}

.header.scrolled {
    height: 72px;

    box-shadow:
        0 5px 30px rgba(13, 31, 49, 0.08);
}

.header-content {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 35px;
}

.logo {
    margin-right: auto;
    flex-shrink: 0;
}

.logo img {
    width: 72px;

    max-height: 62px;

    object-fit: contain;

    transition:
        transform var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.nav {
    display: flex;

    align-items: center;

    gap: 28px;
}

.nav a {
    color: #435162;

    font-size: 0.88rem;

    font-weight: 600;

    position: relative;

    white-space: nowrap;

    transition:
        color var(--transition);
}

.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--teal);

    transition:
        width var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--navy);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    flex-shrink: 0;

    align-items: center;
    justify-content: center;

    background: transparent;

    color: var(--navy);

    font-size: 1.3rem;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    width: 100%;

    min-height: 790px;

    padding-top: 84px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            120deg,
            var(--navy-dark) 0%,
            var(--navy) 58%,
            #143946 100%
        );

    overflow: hidden;
}

.hero-glow {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.hero-glow-one {
    width: 620px;
    height: 620px;

    right: -170px;
    top: 65px;

    background:
        rgba(81, 172, 181, 0.12);

    animation:
        glowMoveOne 8s ease-in-out infinite;
}

.hero-glow-two {
    width: 330px;
    height: 330px;

    left: -120px;
    bottom: -120px;

    background:
        rgba(255, 255, 255, 0.035);

    animation:
        glowMoveTwo 10s ease-in-out infinite;
}

@keyframes glowMoveOne {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(-25px, 20px, 0)
            scale(1.06);
    }
}

@keyframes glowMoveTwo {

    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            scale(1);
    }

    50% {
        transform:
            translate3d(25px, -20px, 0)
            scale(1.08);
    }
}

.hero-grid {
    position: relative;

    z-index: 3;

    display: grid;

    grid-template-columns:
        minmax(0, 1.12fr)
        minmax(0, 0.88fr);

    gap: 80px;

    align-items: center;

    padding-top: 55px;
    padding-bottom: 85px;
}

.hero-content {
    max-width: 680px;

    opacity: 0;

    animation:
        heroContentEntry
        1s
        0.1s
        cubic-bezier(0.16, 1, 0.3, 1)
        forwards;
}

@keyframes heroContentEntry {

    from {
        opacity: 0;

        transform:
            translateX(-60px);

        filter: blur(5px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0);

        filter: blur(0);
    }
}

.section-label {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 8px 14px;

    border:
        1px solid rgba(255, 255, 255, 0.15);

    border-radius: 100px;

    color: #dcebed;

    background:
        rgba(255, 255, 255, 0.06);

    font-size: 0.82rem;

    font-weight: 600;

    margin-bottom: 24px;
}

.section-label i {
    color: var(--teal-light);
}

.hero h1 {
    color: var(--white);

    font-size:
        clamp(2.7rem, 5vw, 4.85rem);

    line-height: 1.02;

    letter-spacing: -0.055em;

    max-width: 730px;
}

.hero h1 span {
    color: var(--teal-light);
}

.hero-content > p {
    color: #becbd6;

    margin-top: 25px;

    max-width: 610px;

    font-size: 1.07rem;

    line-height: 1.75;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 13px;

    margin-top: 34px;
}

.hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 24px;

    margin-top: 30px;
}

.trust-item {
    display: flex;

    align-items: center;

    gap: 8px;

    color: #bfccd6;

    font-size: 0.83rem;
}

.trust-item i {
    color: var(--teal-light);
}

.hero-cards {
    display: flex;

    flex-direction: column;

    gap: 15px;

    position: relative;

    opacity: 0;

    animation:
        heroCardsEntry
        1.1s
        0.35s
        cubic-bezier(0.16, 1, 0.3, 1)
        forwards;
}

@keyframes heroCardsEntry {

    from {
        opacity: 0;

        transform:
            translateX(80px)
            scale(0.94);

        filter: blur(6px);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);

        filter: blur(0);
    }
}

.profile-card {
    padding: 22px;

    display: flex;

    align-items: center;

    gap: 20px;

    background:
        rgba(255, 255, 255, 0.98);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-lg);

    transition:
        transform 0.4s
        cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}

.profile-card:nth-child(2) {
    transform: translateX(40px);
}

.profile-card:hover {
    transform:
        translateY(-8px)
        scale(1.02);

    box-shadow:
        0 30px 80px
        rgba(11, 30, 50, 0.22);
}

.profile-card:nth-child(2):hover {
    transform:
        translate(40px, -8px)
        scale(1.02);
}

.profile-icon {
    width: 57px;
    height: 57px;

    flex-shrink: 0;

    border-radius: 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--background-alt);

    color: var(--teal);

    font-size: 1.35rem;
}

.profile-card h3 {
    color: var(--navy);

    font-size: 1rem;

    margin-bottom: 4px;
}

.profile-card p {
    color: var(--text-light);

    font-size: 0.82rem;

    line-height: 1.5;
}

.hero-wave {
    position: absolute;

    bottom: -1px;
    left: 0;
    right: 0;

    height: 45px;

    background: var(--white);

    clip-path:
        polygon(
            0 70%,
            20% 85%,
            45% 55%,
            70% 85%,
            100% 60%,
            100% 100%,
            0 100%
        );
}


/* =========================================================
   PLANOS
========================================================= */

.plans-section {
    background: var(--white);
}

.plans-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 24px;
}

.plan-card {
    position: relative;

    padding: 34px;

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    background: var(--white);

    overflow: hidden;

    transition:
        transform 0.4s
        cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.plan-card:hover {
    transform:
        translateY(-10px)
        scale(1.015);

    border-color:
        rgba(63, 137, 146, 0.35);

    box-shadow: var(--shadow-md);
}

.plan-number {
    position: absolute;

    right: 25px;
    top: 18px;

    font-size: 3.7rem;

    font-weight: 800;

    color:
        rgba(63, 137, 146, 0.07);

    letter-spacing: -0.08em;
}

.plan-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: var(--background-alt);

    color: var(--teal);

    font-size: 1.35rem;

    margin-bottom: 28px;

    transition:
        transform 0.35s ease;
}

.plan-card:hover .plan-icon {
    transform:
        rotate(-5deg)
        scale(1.08);
}

.plan-card h3 {
    color: var(--navy);

    font-size: 1.15rem;

    margin-bottom: 12px;
}

.plan-card p {
    color: var(--text-light);

    min-height: 76px;

    font-size: 0.9rem;
}

.plan-card a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--teal-dark);

    font-size: 0.87rem;

    font-weight: 700;

    margin-top: 25px;
}

.plan-card a i {
    transition:
        transform var(--transition);
}

.plan-card a:hover i {
    transform: translateX(5px);
}


/* =========================================================
   OPERADORAS
========================================================= */

.operators-section {
    background: var(--background);
}

.operators-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}

.operator-card {
    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition:
        transform 0.4s
        cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}

.operator-card:hover {
    transform:
        translateY(-10px)
        scale(1.015);

    box-shadow: var(--shadow-md);
}

.operator-logo {
    height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 32px;

    background: #fbfcfd;

    border-bottom:
        1px solid var(--border);

    overflow: hidden;
}

.operator-logo img {
    max-height: 400px;
    max-width: 200px;

    object-fit: contain;

    transition:
        transform 0.5s
        cubic-bezier(0.16, 1, 0.3, 1);
}

.operator-card:hover .operator-logo img {
    transform: scale(1.1);
}

.operator-content {
    padding: 28px;
}

.operator-tag {
    color: var(--teal);

    font-size: 0.73rem;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.operator-content h3 {
    font-size: 1.25rem;

    color: var(--navy);

    margin: 7px 0 10px;
}

.operator-content p {
    font-size: 0.88rem;

    color: var(--text-light);

    min-height: 85px;
}

.operator-link {
    margin-top: 24px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--teal-dark);

    font-size: 0.85rem;

    font-weight: 700;
}


/* =========================================================
   BENEFÍCIOS
========================================================= */

.benefits-section {
    background: var(--navy-dark);

    color: var(--white);

    position: relative;

    overflow: hidden;
}

.benefits-section::before {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        rgba(63, 137, 146, 0.11);

    top: -250px;
    right: -120px;
}

.benefits-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 100px;

    align-items: end;

    margin-bottom: 55px;
}

.benefits-header h2 {
    color: var(--white);
}

.benefits-header p {
    color: #aebdc9;

    font-size: 0.98rem;
}

.benefits-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 15px;
}

.benefit-card {
    padding: 28px;

    border-radius: var(--radius-md);

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    transition:
        transform 0.4s
        cubic-bezier(0.16, 1, 0.3, 1),
        background 0.4s ease,
        border-color 0.4s ease;
}

.benefit-card:hover {
    transform:
        translateY(-8px);

    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(103, 174, 180, 0.3);
}

.benefit-card > i {
    color: var(--teal-light);

    font-size: 1.65rem;

    margin-bottom: 26px;

    transition:
        transform 0.4s ease;
}

.benefit-card:hover > i {
    transform:
        translateY(-4px)
        scale(1.1);
}

.benefit-card h3 {
    font-size: 1rem;

    margin-bottom: 10px;
}

.benefit-card p {
    color: #aebdc9;

    font-size: 0.82rem;
}


/* =========================================================
   SOBRE
========================================================= */

.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.85fr)
        minmax(0, 1.15fr);

    gap: 95px;

    align-items: center;
}

.about-image-wrapper {
    position: relative;

    max-width: 490px;
}

.about-image-decoration {
    position: absolute;

    width: 85%;
    height: 85%;

    left: -20px;
    bottom: -20px;

    background:
        var(--background-alt);

    border-radius: var(--radius-lg);

    transform: rotate(-4deg);
}

.about-image {
    position: relative;

    width: 100%;

    aspect-ratio: 4 / 5;

    object-fit: cover;
    object-position: center;

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-md);

    transition:
        transform 0.6s
        cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.025);

    box-shadow:
        0 35px 80px
        rgba(11, 30, 50, 0.20);
}

.about-badge {
    position: absolute;

    right: -35px;
    bottom: 35px;

    min-width: 175px;

    padding: 17px 22px;

    background: var(--navy);

    color: var(--white);

    border-radius: 15px;

    box-shadow: var(--shadow-md);

    transition:
        transform 0.4s ease;
}

.about-image-wrapper:hover .about-badge {
    transform:
        translateY(-8px);
}

.about-badge span {
    display: block;

    font-size: 0.72rem;

    color: #aab8c3;
}

.about-badge strong {
    font-size: 1.15rem;
}

.about-content h2 {
    margin-bottom: 28px;
}

.about-content > p {
    color: var(--text-light);

    margin-bottom: 15px;

    font-size: 0.95rem;
}

.about-content strong {
    color: var(--navy);
}

.about-story-button {
    margin-top: 12px;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 0;

    background: transparent;

    color: var(--teal-dark);

    font-size: 0.9rem;

    font-weight: 800;

    transition:
        color var(--transition),
        gap var(--transition);
}

.about-story-button:hover {
    color: var(--navy);

    gap: 14px;
}

.about-features {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-top: 30px;
}

.about-features > div {
    display: flex;

    align-items: center;

    gap: 13px;

    padding: 17px;

    border:
        1px solid var(--border);

    border-radius: var(--radius-sm);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.about-features > div:hover {
    transform:
        translateY(-5px);

    box-shadow: var(--shadow-sm);
}

.about-features i {
    color: var(--teal);

    font-size: 1.2rem;

    flex-shrink: 0;
}

.about-features span {
    display: flex;

    flex-direction: column;

    font-size: 0.72rem;

    color: var(--text-light);
}

.about-features strong {
    font-size: 0.84rem;
}


/* =========================================================
   PROCESSO
========================================================= */

.process-section {
    background: var(--background);
}

.process-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        90px
        minmax(0, 1fr)
        90px
        minmax(0, 1fr);

    align-items: center;
}

.process-card {
    text-align: center;

    position: relative;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    padding: 32px 25px;

    transition:
        transform 0.4s
        cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}

.process-card:hover {
    transform:
        translateY(-10px)
        scale(1.015);

    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;

    top: 17px;
    right: 20px;

    color: #c7d0d6;

    font-weight: 800;

    font-size: 0.75rem;
}

.process-icon {
    width: 62px;
    height: 62px;

    border-radius: 50%;

    margin: 0 auto 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--teal);

    background: var(--background-alt);

    font-size: 1.35rem;

    transition:
        transform 0.4s ease;
}

.process-card:hover .process-icon {
    transform:
        scale(1.1)
        rotate(-4deg);
}

.process-card h3 {
    color: var(--navy);

    margin-bottom: 10px;

    font-size: 1rem;
}

.process-card p {
    color: var(--text-light);

    font-size: 0.82rem;
}

.process-line {
    height: 1px;

    background:
        repeating-linear-gradient(
            to right,
            var(--teal) 0,
            var(--teal) 6px,
            transparent 6px,
            transparent 12px
        );

    opacity: 0.35;
}


/* =========================================================
   AVALIAÇÕES
========================================================= */

.reviews-section {
    background: var(--white);
}

.reviews-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 30px;

    margin-bottom: 50px;
}

.reviews-heading h2 {
    font-size:
        clamp(2rem, 4vw, 3rem);

    color: var(--navy);

    line-height: 1.1;

    letter-spacing: -0.04em;
}

.reviews-heading h2 span {
    color: var(--teal);
}

.google-link {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--navy);

    font-weight: 700;

    font-size: 0.87rem;

    border-bottom:
        1px solid var(--border);

    padding-bottom: 6px;
}

.reviews-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}

.review-card {
    padding: 30px;

    border:
        1px solid var(--border);

    border-radius: var(--radius-md);

    box-shadow: var(--shadow-sm);

    background: var(--white);

    transition:
        transform 0.4s
        cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.4s ease;
}

.review-card:hover {
    transform:
        translateY(-10px)
        scale(1.015);

    box-shadow: var(--shadow-md);
}

.review-stars {
    display: flex;

    gap: 3px;

    color: #f5b940;

    margin-bottom: 20px;

    font-size: 0.9rem;
}

.review-card > p {
    color: #4f5e6f;

    line-height: 1.75;

    min-height: 120px;

    font-size: 0.9rem;
}

.review-author {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 25px;

    padding-top: 20px;

    border-top:
        1px solid var(--border);
}

.review-avatar {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--background-alt);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--teal);
}

.review-author div:last-child {
    display: flex;

    flex-direction: column;
}

.review-author strong {
    color: var(--navy);

    font-size: 0.87rem;
}

.review-author span {
    color: var(--text-light);

    font-size: 0.7rem;
}


/* =========================================================
   FAQ
========================================================= */

.faq-section {
    background: var(--background);
}

.faq-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 0.75fr)
        minmax(0, 1.25fr);

    gap: 95px;
}

.faq-heading h2 {
    margin-bottom: 20px;
}

.faq-heading .btn {
    margin-top: 28px;
}

.faq-list {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.faq-item {
    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius-sm);

    overflow: hidden;

    transition:
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}

.faq-item:hover {
    transform:
        translateX(4px);

    border-color:
        rgba(63, 137, 146, 0.3);

    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    background: transparent;

    padding: 20px 22px;

    text-align: left;

    color: var(--navy);

    font-weight: 700;
}

.faq-question i {
    color: var(--teal);

    flex-shrink: 0;

    transition:
        transform var(--transition);
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.45s ease,
        opacity 0.35s ease;
}

.faq-answer p {
    padding:
        0 22px 22px;

    color: var(--text-light);

    font-size: 0.87rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;

    opacity: 1;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}


/* =========================================================
   CTA FINAL
========================================================= */

.final-cta {
    padding: 80px 0;

    background: var(--white);
}

.final-cta-box {
    min-height: 210px;

    display: grid;

    grid-template-columns:
        auto minmax(0, 1fr) auto;

    align-items: center;

    gap: 30px;

    padding: 45px;

    background:
        linear-gradient(
            120deg,
            var(--teal-dark),
            var(--teal),
            #37818b
        );

    color: var(--white);

    border-radius: var(--radius-lg);

    box-shadow:
        0 25px 60px
        rgba(43, 116, 126, 0.20);

    position: relative;

    overflow: hidden;
}

.final-cta-box::after {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -70px;
    top: -140px;

    border-radius: 50%;

    border:
        50px solid
        rgba(255, 255, 255, 0.06);
}

.cta-icon {
    width: 75px;
    height: 75px;

    border-radius: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 1.7rem;

    background:
        rgba(255, 255, 255, 0.13);

    animation:
        ctaPulse
        3s
        ease-in-out
        infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

.cta-content {
    position: relative;

    z-index: 2;
}

.cta-content > span {
    font-size: 0.72rem;

    text-transform: uppercase;

    letter-spacing: 0.1em;

    opacity: 0.85;
}

.cta-content h2 {
    font-size:
        clamp(1.6rem, 3vw, 2.45rem);

    margin: 5px 0 7px;

    line-height: 1.15;
}

.cta-content p {
    opacity: 0.88;

    font-size: 0.9rem;

    max-width: 620px;
}

.final-cta .btn {
    position: relative;

    z-index: 2;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;

    background: var(--navy-dark);

    color: #9dadb9;

    padding-top: 65px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(0, 0.75fr)
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 60px;

    padding-bottom: 45px;
}

.footer-logo {
    width: 90px;

    margin-bottom: 20px;
}

.footer-brand p {
    max-width: 310px;

    font-size: 0.83rem;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 11px;
}

.footer-column h4 {
    color: var(--white);

    margin-bottom: 6px;

    font-size: 0.9rem;
}

.footer-column a,
.footer-column p {
    font-size: 0.8rem;

    transition:
        color var(--transition);
}

.footer-column a:hover {
    color: var(--teal-light);
}

.footer-column i {
    margin-right: 7px;

    width: 14px;
}

.footer-bottom {
    min-height: 75px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 0.72rem;
}

.safezone-credit a {
    color: var(--white);

    font-weight: 700;

    transition:
        color var(--transition);
}

.safezone-credit a:hover {
    color: var(--teal-light);
}


/* =========================================================
   WHATSAPP FLUTUANTE
========================================================= */

.whatsapp-floating {
    position: fixed;

    right: 25px;
    bottom: 25px;

    z-index: 900;

    height: 56px;

    padding: 0 19px;

    display: flex;

    align-items: center;

    gap: 10px;

    border-radius: 100px;

    background: #22c66b;

    color: var(--white);

    font-weight: 700;

    font-size: 0.82rem;

    box-shadow:
        0 15px 35px
        rgba(19, 143, 78, 0.28);

    animation:
        whatsappFloat
        2.8s
        ease-in-out
        infinite;

    transition:
        box-shadow var(--transition);
}

.whatsapp-floating i {
    font-size: 1.45rem;
}

.whatsapp-floating:hover {
    animation-play-state: paused;

    box-shadow:
        0 20px 45px
        rgba(19, 143, 78, 0.38);
}

@keyframes whatsappFloat {

    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }
}


/* =========================================================
   MODAL HISTÓRIA
========================================================= */

.story-modal {
    position: fixed;

    inset: 0;

    z-index: 2000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 24px;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.story-modal.active {
    visibility: visible;

    opacity: 1;

    pointer-events: auto;
}

.story-modal-overlay {
    position: absolute;

    inset: 0;

    background:
        rgba(6, 18, 31, 0.72);

    backdrop-filter:
        blur(8px);

    -webkit-backdrop-filter:
        blur(8px);
}

.story-modal-dialog {
    position: relative;

    z-index: 2;

    width: min(780px, 100%);

    max-height:
        calc(100dvh - 48px);

    display: flex;

    flex-direction: column;

    background: var(--white);

    border-radius: 26px;

    overflow: hidden;

    box-shadow:
        0 35px 100px
        rgba(0, 0, 0, 0.30);

    transform:
        translateY(28px)
        scale(0.96);

    opacity: 0;

    transition:
        transform 0.4s
        cubic-bezier(0.16, 1, 0.3, 1),
        opacity 0.4s ease;
}

.story-modal.active .story-modal-dialog {
    transform:
        translateY(0)
        scale(1);

    opacity: 1;
}

.story-modal-header {
    padding:
        30px 34px 24px;

    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 25px;

    border-bottom:
        1px solid var(--border);
}

.story-modal-label {
    display: block;

    margin-bottom: 8px;

    color: var(--teal-dark);

    text-transform: uppercase;

    letter-spacing: 0.1em;

    font-size: 0.72rem;

    font-weight: 800;
}

.story-modal-header h2 {
    color: var(--navy);

    font-size:
        clamp(1.6rem, 4vw, 2.4rem);

    line-height: 1.12;

    letter-spacing: -0.035em;

    max-width: 610px;
}

.story-modal-close {
    flex-shrink: 0;

    width: 44px;
    height: 44px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--background);

    color: var(--navy);

    font-size: 1.1rem;

    transition:
        background var(--transition),
        transform var(--transition);
}

.story-modal-close:hover {
    background: var(--background-alt);

    transform:
        rotate(6deg);
}

.story-modal-content {
    padding:
        30px 34px;

    overflow-y: auto;

    overscroll-behavior:
        contain;

    -webkit-overflow-scrolling:
        touch;
}

.story-modal-content p {
    margin-bottom: 18px;

    color: #566474;

    font-size: 0.95rem;

    line-height: 1.8;
}

.story-modal-content strong {
    color: var(--navy);
}

.story-modal-highlight {
    margin-top: 28px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-radius: 16px;

    background: var(--background-alt);

    border:
        1px solid
        rgba(63, 137, 146, 0.12);
}

.story-modal-highlight > i {
    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: var(--teal);

    color: var(--white);

    font-size: 1.15rem;
}

.story-modal-highlight div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.story-modal-highlight strong {
    font-size: 0.9rem;
}

.story-modal-highlight span {
    color: var(--text-light);

    font-size: 0.78rem;
}

.story-modal-footer {
    padding:
        20px 34px;

    display: flex;

    align-items: center;

    justify-content:
        flex-end;

    gap: 12px;

    border-top:
        1px solid var(--border);

    background: #fbfcfd;
}

.story-modal-secondary {
    min-height: 48px;

    padding:
        0 18px;

    border-radius: 11px;

    background:
        transparent;

    color: var(--text-light);

    font-weight: 700;
}


/* =========================================================
   ANIMAÇÕES SCROLL
========================================================= */

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;

    will-change:
        opacity,
        transform,
        filter;
}

.reveal {
    transform:
        translateY(60px)
        scale(0.97);

    filter:
        blur(4px);

    transition:
        opacity 0.85s
        cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s
        cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.85s ease;
}

.reveal.visible {
    opacity: 1;

    transform:
        translateY(0)
        scale(1);

    filter:
        blur(0);
}

.reveal-left {
    transform:
        translateX(-70px);

    filter:
        blur(4px);

    transition:
        opacity 0.9s
        cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s
        cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.9s ease;
}

.reveal-left.visible {
    opacity: 1;

    transform:
        translateX(0);

    filter:
        blur(0);
}

.reveal-right {
    transform:
        translateX(70px);

    filter:
        blur(4px);

    transition:
        opacity 0.9s
        cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.9s
        cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.9s ease;
}

.reveal-right.visible {
    opacity: 1;

    transform:
        translateX(0);

    filter:
        blur(0);
}

.reveal-scale {
    transform:
        scale(0.88);

    filter:
        blur(4px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(0.16, 1, 0.3, 1),
        filter 0.8s ease;
}

.reveal-scale.visible {
    opacity: 1;

    transform:
        scale(1);

    filter:
        blur(0);
}

.reveal-delay {
    transition-delay: 0.15s;
}

.reveal-delay-2 {
    transition-delay: 0.30s;
}

.reveal-delay-3 {
    transition-delay: 0.45s;
}


/* =========================================================
   NOTEBOOK / TABLET GRANDE
========================================================= */

@media (max-width: 1024px) {

    .nav {
        gap: 18px;
    }

    .nav a {
        font-size: 0.79rem;
    }

    .btn-header {
        display: none;
    }

    .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.72fr);

        gap: 45px;
    }

    .plans-grid,
    .operators-grid {
        gap: 16px;
    }

    .benefits-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .about-grid {
        gap: 55px;
    }

    .process-grid {
        grid-template-columns:
            minmax(0, 1fr)
            45px
            minmax(0, 1fr)
            45px
            minmax(0, 1fr);
    }

    .faq-grid {
        gap: 55px;
    }

    .footer-grid {
        gap: 35px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 820px) {

    .section {
        padding: 80px 0;
    }

    .header {
        height: 72px;
    }

    .logo img {
        width: 62px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;

        top: 72px;
        right: -100%;

        width: min(320px, 88vw);

        height:
            calc(100dvh - 72px);

        padding:
            40px 30px;

        background:
            var(--white);

        flex-direction:
            column;

        align-items:
            flex-start;

        gap: 25px;

        box-shadow:
            -20px 20px 45px
            rgba(15, 32, 52, 0.10);

        overflow-y: auto;

        transition:
            right 0.4s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 1rem;
        white-space: normal;
    }

    .hero {
        min-height: auto;
        padding-top: 72px;
    }

    .hero-grid {
        grid-template-columns:
            1fr;

        padding-top: 80px;
        padding-bottom: 100px;

        gap: 55px;
    }

    .hero-content {
        max-width: 670px;
    }

    .hero-cards {
        max-width: 600px;
    }

    .profile-card:nth-child(2) {
        transform: none;
    }

    .profile-card:nth-child(2):hover {
        transform:
            translateY(-8px)
            scale(1.02);
    }

    .plans-grid,
    .operators-grid,
    .reviews-grid {
        grid-template-columns:
            1fr;
    }

    .plan-card p,
    .operator-content p,
    .review-card > p {
        min-height: auto;
    }

    .benefits-header {
        grid-template-columns:
            1fr;

        gap: 25px;
    }

    .about-grid {
        grid-template-columns:
            1fr;

        gap: 70px;
    }

    .about-image-wrapper {
        margin:
            0 auto;

        width:
            min(100%, 520px);
    }

    .about-badge {
        right: 12px;
    }

    .process-grid {
        grid-template-columns:
            1fr;

        gap: 18px;

        max-width: 520px;

        margin:
            0 auto;
    }

    .process-line {
        height: 35px;

        width: 1px;

        margin:
            0 auto;

        background:
            repeating-linear-gradient(
                to bottom,
                var(--teal) 0,
                var(--teal) 6px,
                transparent 6px,
                transparent 12px
            );
    }

    .reviews-heading {
        flex-direction:
            column;

        align-items:
            flex-start;
    }

    .faq-grid {
        grid-template-columns:
            1fr;

        gap: 50px;
    }

    .final-cta-box {
        grid-template-columns:
            1fr;

        text-align: center;

        justify-items: center;

        padding:
            45px 30px;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    /*
       CORREÇÃO DO CORTE LATERAL

       O fundo das seções ocupa a viewport inteira.
       O .container continua criando a margem interna.
    */

    html,
    body {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 0;

        overflow-x: hidden;
    }

    main {
        width: 100%;
        max-width: 100%;

        margin: 0;
        padding: 0;
    }

    .header,
    .hero,
    .plans-section,
    .operators-section,
    .benefits-section,
    .about-section,
    .process-section,
    .reviews-section,
    .faq-section,
    .final-cta,
    .footer {
        width: 100vw;
        max-width: 100vw;

        margin-left:
            calc(50% - 50vw);

        margin-right:
            calc(50% - 50vw);
    }


    /*
       SOMENTE O CONTEÚDO TEM MARGEM
    */

    .container {
        width: 100%;
        max-width: 100%;

        margin-left: auto;
        margin-right: auto;

        padding-left: 20px;
        padding-right: 20px;
    }


    .section {
        padding:
            68px 0;
    }


    /* HEADER */

    .header {
        height: 68px;
    }

    .header.scrolled {
        height: 64px;
    }

    .header-content {
        gap: 10px;
    }

    .logo img {
        width: 58px;
        max-width: 58px;
    }

    .nav {
        top: 68px;

        width: 86vw;

        max-width: 320px;

        height:
            calc(100dvh - 68px);

        padding:
            28px 24px;
    }


    /* HERO */

    .hero {
        min-height: auto;

        padding-top: 68px;

        overflow: hidden;
    }

    .hero-grid {
        width: 100%;

        grid-template-columns:
            1fr;

        padding-top: 55px;
        padding-bottom: 90px;

        gap: 38px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;

        animation-name:
            heroContentEntryMobile;
    }

    @keyframes heroContentEntryMobile {

        from {
            opacity: 0;

            transform:
                translateY(35px);

            filter:
                blur(4px);
        }

        to {
            opacity: 1;

            transform:
                translateY(0);

            filter:
                blur(0);
        }
    }


    /*
       Hero cards continuam animados,
       mas verticalmente no celular.
       Isso evita criar largura horizontal.
    */

    .hero-cards {
        width: 100%;
        max-width: 100%;

        animation-name:
            heroCardsEntryMobile;
    }

    @keyframes heroCardsEntryMobile {

        from {
            opacity: 0;

            transform:
                translateY(45px)
                scale(0.96);

            filter:
                blur(5px);
        }

        to {
            opacity: 1;

            transform:
                translateY(0)
                scale(1);

            filter:
                blur(0);
        }
    }

    .section-label {
        max-width: 100%;

        font-size: 0.74rem;
    }

    .hero h1 {
        width: 100%;

        font-size:
            clamp(
                2.05rem,
                10vw,
                2.65rem
            );

        line-height: 1.05;

        letter-spacing:
            -0.045em;
    }

    .hero-content > p {
        width: 100%;

        margin-top: 21px;

        font-size: 0.94rem;

        line-height: 1.7;
    }

    .hero-actions {
        width: 100%;

        flex-direction:
            column;
    }

    .hero-actions .btn {
        width: 100%;

        padding:
            14px 16px;

        white-space: normal;

        line-height: 1.35;
    }

    .hero-trust {
        width: 100%;

        flex-direction:
            column;

        gap: 10px;
    }

    .profile-card,
    .profile-card:nth-child(2) {
        width: 100%;

        max-width: 100%;

        transform: none;
    }

    .profile-card {
        padding: 18px;

        align-items:
            flex-start;

        gap: 14px;
    }

    .profile-card:hover,
    .profile-card:nth-child(2):hover {
        transform:
            translateY(-5px)
            scale(1.01);
    }

    .profile-icon {
        width: 48px;
        height: 48px;

        flex: 0 0 48px;

        border-radius: 13px;

        font-size: 1.1rem;
    }


    /* TÍTULOS */

    .section-heading {
        width: 100%;

        margin-bottom: 38px;
    }

    .section-heading h2,
    .about-content h2,
    .faq-heading h2,
    .benefits-header h2 {
        width: 100%;

        font-size:
            clamp(
                1.9rem,
                8.5vw,
                2.15rem
            );

        line-height: 1.12;
    }

    .section-heading p,
    .faq-heading > p {
        font-size: 0.94rem;
    }


    /* GRIDS */

    .plans-grid,
    .operators-grid,
    .reviews-grid,
    .benefits-grid {
        width: 100%;

        grid-template-columns:
            1fr;
    }

    .plan-card,
    .operator-card,
    .review-card,
    .benefit-card {
        width: 100%;
        max-width: 100%;
    }

    .plan-card,
    .review-card,
    .benefit-card {
        padding: 25px;
    }

    .operator-content {
        padding: 25px;
    }

    .operator-logo {
        height: 125px;

        padding: 25px;
    }

    .operator-logo img {
        max-width: 300px;

        max-height: 160px;
    }

    .plan-card p,
    .operator-content p,
    .review-card > p {
        min-height: auto;
    }


    /* SOBRE */

    .about-grid {
        width: 100%;

        gap: 55px;
    }

    .about-image-wrapper {
        width: 100%;

        max-width: 100%;
    }

    .about-image-decoration {
        width:
            calc(100% - 18px);

        height: 88%;

        left: 7px;
        bottom: -10px;
    }

    .about-image {
        width: 100%;

        max-width: 100%;
    }

    .about-badge {
        right: 12px;

        bottom: 12px;

        min-width: 0;

        max-width:
            calc(100% - 24px);

        padding:
            13px 17px;
    }

    .about-badge strong {
        font-size: 1rem;
    }

    .about-content {
        width: 100%;
    }

    .about-features {
        grid-template-columns:
            1fr;
    }


    /* PROCESSO */

    .process-grid {
        width: 100%;

        max-width: 100%;
    }

    .process-card {
        width: 100%;
    }


    /* FAQ */

    .faq-grid,
    .faq-heading,
    .faq-list,
    .faq-item {
        width: 100%;
        max-width: 100%;
    }

    .faq-item:hover {
        transform: none;
    }

    .faq-question {
        padding:
            18px 17px;

        gap: 14px;

        font-size: 0.9rem;
    }

    .faq-answer p {
        padding:
            0 17px 18px;
    }


    /* CTA */

    .final-cta {
        padding:
            60px 0;
    }

    .final-cta-box {
        width: 100%;

        padding:
            38px 20px;

        gap: 22px;

        border-radius: 22px;
    }

    .cta-icon {
        width: 64px;
        height: 64px;

        font-size: 1.45rem;
    }

    .cta-content {
        width: 100%;
    }

    .cta-content h2 {
        font-size:
            clamp(
                1.55rem,
                7vw,
                2rem
            );
    }

    .final-cta .btn {
        width: 100%;

        padding:
            14px 15px;

        white-space: normal;
    }


    /* FOOTER */

    .footer-grid {
        grid-template-columns:
            1fr;

        gap: 35px;
    }

    .footer-bottom {
        padding:
            25px 0;

        flex-direction:
            column;

        align-items:
            flex-start;
    }


    /* WHATSAPP */

    .whatsapp-floating {
        width: 56px;
        height: 56px;

        padding: 0;

        justify-content:
            center;

        right:
            max(
                18px,
                env(safe-area-inset-right)
            );

        bottom:
            max(
                18px,
                calc(
                    env(safe-area-inset-bottom)
                    + 12px
                )
            );
    }

    .whatsapp-floating span {
        display: none;
    }


    /* =====================================================
       ANIMAÇÕES MOBILE

       Continuam funcionando.
       Apenas não usamos deslocamento lateral,
       evitando aumentar a largura da viewport.
    ===================================================== */

    .reveal {
        transform:
            translateY(45px)
            scale(0.98);

        filter:
            blur(3px);
    }

    .reveal-left {
        transform:
            translateY(45px);

        filter:
            blur(3px);
    }

    .reveal-right {
        transform:
            translateY(45px);

        filter:
            blur(3px);
    }

    .reveal-scale {
        transform:
            translateY(25px)
            scale(0.94);

        filter:
            blur(3px);
    }

    .reveal.visible,
    .reveal-left.visible,
    .reveal-right.visible,
    .reveal-scale.visible {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);

        filter:
            blur(0);
    }


    /* MODAL */

    .story-modal {
        width: 100vw;

        padding: 0;

        align-items:
            flex-end;
    }

    .story-modal-dialog {
        width: 100%;

        max-width: 100%;

        max-height:
            calc(
                100dvh
                - env(safe-area-inset-top)
                - 8px
            );

        border-radius:
            24px 24px 0 0;

        transform:
            translateY(100%);
    }

    .story-modal.active
    .story-modal-dialog {
        transform:
            translateY(0);
    }

    .story-modal-header {
        padding:
            21px 18px 17px;

        gap: 12px;
    }

    .story-modal-header h2 {
        font-size:
            clamp(
                1.35rem,
                6vw,
                1.65rem
            );
    }

    .story-modal-close {
        width: 40px;
        height: 40px;

        flex-basis: 40px;
    }

    .story-modal-content {
        width: 100%;

        padding:
            20px 18px;

        overflow-x: hidden;
    }

    .story-modal-content p {
        font-size: 0.9rem;

        line-height: 1.72;
    }

    .story-modal-highlight {
        width: 100%;

        padding: 16px;

        align-items:
            flex-start;

        gap: 13px;
    }

    .story-modal-footer {
        width: 100%;

        padding:
            15px 18px
            calc(
                15px +
                env(safe-area-inset-bottom)
            );

        flex-direction:
            column-reverse;
    }

    .story-modal-footer .btn,
    .story-modal-secondary {
        width: 100%;
    }
}


/* =========================================================
   CELULARES PEQUENOS
========================================================= */

@media (max-width: 380px) {

    .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-heading h2,
    .about-content h2,
    .faq-heading h2,
    .benefits-header h2 {
        font-size: 1.82rem;
    }

    .profile-card {
        padding: 15px;
    }

    .profile-icon {
        width: 44px;
        height: 44px;

        flex-basis: 44px;
    }

    .plan-card,
    .operator-content,
    .review-card,
    .benefit-card {
        padding: 20px;
    }

    .final-cta-box {
        padding:
            34px 17px;
    }
}