:root {
    /* New Palette */
    --primary-color: #FF7272;
    /* PRINCIPAL - Soft Red */
    --primary-dark: #e05e5e;
    /* Slightly darker Principal for depth */
    --secondary-color: #0E1B4D;
    /* SECUNDARIA - Deep Blue (Buttons/Text) */
    --secondary-hover: #162a6e;
    /* Hover for secondary */
    --accent-color: #FF4C4C;
    /* CONTRASTE - Vibrant Red */

    --text-color: #0E1B4D;
    /* Use Secondary for text - High contrast & brand aligned */
    --text-light: #525f7a;
    /* Lighter blue/gray for secondary text */
    --bg-light: #f7f7f7;
    /* FUNDO - Warm White */
    --white: #ffffff;

    --shadow-sm: 0 2px 4px rgba(14, 27, 77, 0.1);
    /* Blue-tinted shadow */
    --shadow-md: 0 4px 12px rgba(14, 27, 77, 0.1);
    --shadow-lg: 0 10px 25px rgba(14, 27, 77, 0.15);

    --radius-sm: 8px;
    --radius-md: 16px;
    --transition: all 0.3s ease;
    --container-width: 1200px;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

.text-center {
    text-align: center;
}

.highlight {
    color: var(--secondary-color);
}

.section-header {
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.4);
}

.btn-primary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}



/* Hero Section */
.hero {
    padding-top: var(--spacing-lg);
    padding-bottom: 100px;
    background-color: white;
    color: #FF7272;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: var(--spacing-lg);
    row-gap: 20px;
    align-items: start;
    position: relative;
    z-index: 2;
    margin-bottom: -40px;
}

/* Hero image sizing */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-asset {
    width: 100%;
    max-width: 760px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Triangular decorative shape behind hero content */
.hero-triangle {
    position: absolute;
    top: -10%;
    right: -8%;
    width: 55%;
    height: 120%;
    /* gradiente do lado esquerdo transparente para a cor principal no direito */
    background: linear-gradient(to right, rgba(255,114,114,0) 32%, rgba(255,114,114,0.95) 60%);
    /* slanted shape that doesn't cover left column */
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
    transform: rotate(6deg);
    z-index: 0;
    opacity: 0.95;
}

@media (max-width: 992px) {
    .hero-triangle {
        width: 80%;
        height: 120%;
        right: -30%;
        top: -20%;
        transform: rotate(6deg);
    }
    .hero-img-asset {
        max-width: 480px;
    }
}

@media (max-width: 600px) {
    /* Mostrar a forma triangular no mobile fixa embaixo, com a cor sólida na base */
    .hero-triangle {
        display: block;
        /* posicionar saindo de baixo à esquerda para a cor sólida aparecer embaixo */
        top: auto;
        bottom: -18%;
        right: auto;
        left: -10%;
        width: 120%;
        height: 80%;
        /* gradiente: cor sólida embaixo, transparente para cima */
        background: linear-gradient(to top, rgba(255,114,114,0.95) 28%, rgba(255,114,114,0) 65%);
        /* formato que mantém a ponta virada para cima/para dentro */
        clip-path: polygon(0% 0, 100% 0, 100% 100%, 0 100%);
        transform: rotate(0deg);
        z-index: 0;
        opacity: 0.40;
    }
    .hero-img-asset {
        max-width: 360px;
    }
    /* Ajustes para tornar o hero mais compacto em celular */
    .hero {
        padding-top: 40px;
        /* manter padding-bottom mais compacto; controlar espaçamento entre imagem e ícones via .hero-image */
        padding-bottom: 40px;
    }
    .hero-container {
        display: block;
        margin-bottom: 0;
    }
    .hero-content {
        text-align: center;
        padding: 0 12px;
    }
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 10px;
    }
    .hero-content h3 {
        font-size: 1.05rem;
        margin-bottom: 12px;
    }
    .hero-content p {
        font-size: 0.95rem;
        max-width: 680px;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image {
        margin-top: 18px;
        /* distância entre a imagem e as feature-badges no mobile */
        margin-bottom: 32px;
        display: flex;
        justify-content: center;
    }
    .hero-img-asset {
        max-width: 280px;
    }
}

.hero-content .badge {
    background-color: black;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    display: inline-block;
    backdrop-filter: blur(5px);
    color: white;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: var(--spacing-md);
}

/* Hero feature badges (FEITO NO BRASIL / ENVIO RÁPIDO / DADOS SEGUROS) */
.hero-features {
    display: flex;
    gap: 14px;
    margin-top: 0;
    align-items: center;
    flex-wrap: nowrap; /* manter em linha no desktop */
}

.feature-badge {
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgba(255,255,255,0.98);
    padding: 8px 12px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    flex: 1 1 0; /* permitir encolher para caber */
    min-width: 0;
}

.feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--primary-color);
    font-size: 1rem;
    box-shadow: 0 6px 18px rgba(14,27,77,0.06);
    flex: 0 0 40px;
}

.feature-text {
    min-width: 0;
}
.feature-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.feature-text span {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-features {
        gap: 12px;
    }
    .feature-badge {
        padding: 8px 10px;
    }
    .feature-icon { width: 36px; height:36px; flex:0 0 36px; font-size:0.95rem }
    .feature-text strong { font-size:0.86rem }
    .feature-text span { font-size:0.72rem }
}

@media (max-width: 640px) {
    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        text-align: center;
        justify-content: center;
        margin-top: 12px;
    }
    .feature-badge {
        /* dois por linha */
        flex: 0 0 48%;
        max-width: 48%;
        text-align: center;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 10px;
    }
    .feature-badge:nth-child(3) {
        flex: 0 0 60%;
        max-width: 60%;
        margin: 12px auto 0;
    }
    .feature-icon {
        margin: 0 12px 0 0;
    }
    .feature-text { text-align: left; }
    /* garantir espaço entre imagem do hero e os badges para telefones até 640px */
    .hero-image { margin-bottom: 32px; }
}

.hero-trust {
    display: flex;
    gap: 24px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.hero-trust i {
    color: #ffd700;
    margin-right: 8px;
}

.img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.img-placeholder i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

/* Problem Section */
.problem {
    padding: var(--spacing-lg) 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.problem-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-sm);
    font-size: 1.5rem;
}

.danger {
    background: #ffeaea;
    color: #ff0000;
}

.warning {
    background: #fff5e6;
    color: #ff8c00;
}

.alert {
    background: #e6f7ff;
    color: #007bff;
}

/* Solution Section */
.solution {
    padding: 0px;
    background-color: var(--white);
}

.row {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.col-half {
    flex: 1;
}

.img-placeholder.vertical {
    aspect-ratio: 3/4;
    background-color: #eee;
    color: #999;
    border-color: #ddd;
}

.eyebrow {
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}

.step {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

/* Features */
.features {
    padding: var(--spacing-lg) 0;
    background-color: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.feature-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
}

/* Pricing */
.pricing {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(to bottom, var(--white), var(--bg-light));
}

.pricing-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: var(--shadow-md);
    width: 350px;
    position: relative;
    border: 1px solid #eee;
    /* just in case older card styles are used, make overflow visible too */
    overflow: visible;
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 10;
}

.featured-badge {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-badge-familia {
    position: absolute;
    top: -15px;
    right: 50%;
    transform: translateX(50%);
    background: #FF7272;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 16px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.currency {
    font-size: 1.5rem;
    margin-top: 8px;
}

.period {
    font-size: 1rem;
    color: var(--text-light);
    align-self: flex-end;
    margin-bottom: 10px;
}

/* New Pricing Cards */
.pricing-card-new {
    background: var(--white);
    border-radius: 16px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 400px;
    position: relative;
    border: 2px solid var(--secondary-color);
    /* allow badges to overflow the card without being cut off */
    overflow: visible;
}

.pricing-card-new.featured {
    border: 2px solid var(--primary-color);
    background: rgba(255, 114, 114, 0.02);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    /* a little extra horizontal padding gives more room so labels don't wrap */
    padding: 6px 30px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* ensure the red pill always covers the full text on one line */
    white-space: nowrap;
    /* expand slightly beyond card width if needed */
    min-width: 0;
}

.card-badge.featured-badge {
    background: var(--primary-color);
    /* make sure featured badges sit above any underlying card background */
    z-index: 5;
}

.pricing-card-new h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-top: 20px;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.card-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.card-image {
    width: 400px;
    display: block;
    margin: 0 auto 20px;
    height: auto;
}

.card-image-5 {
    width: 700px;
    display: block;
    margin: 0 auto 20px;
    height: auto;
}

/* Size Selector */
.size-selector {
    margin: 24px 0;
}

.size-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.size-btn {
    background: var(--white);
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.size-btn span {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-light);
    margin-top: 4px;
}

.size-btn:hover,
.size-btn.active {
    border-color: var(--secondary-color);
    background: rgba(14, 27, 77, 0.05);
}

/* Size Grid for Kit */
.size-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.size-option {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.size-option label {
    display: block;
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.quantity-control {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.qty-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: var(--primary-dark);
}

.qty-display {
    min-width: 30px;
    display: block;
    font-weight: 600;
    color: var(--text-color);
}

/* Price Section */
.price-section {
    text-align: center;
    margin: 24px 0;
    padding: 16px;
    background: #f9f9f9;
    border-radius: 8px;
}

.price-old {
    display: block;
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 2px;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.installment {
    font-size: 0.8rem;
    color: var(--text-light);
    alignment-baseline: center;
    margin-top: 4px;
}

.installment-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
}

.savings-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 12px;
}

/* Card Features */
.card-features {
    list-style: none;
    margin: 24px 0;
    padding: 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.card-features i {
    color: #2ecc71;
    font-size: 1rem;
}

.features-list {
    margin: 24px 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-list i {
    color: #2ecc71;
}

/* FAQ */
.faq {
    padding: var(--spacing-lg) 0;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 24px 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #0E1B4D;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 24px;
    color: var(--text-light);
}

/* Reviews */
.reviews {
    padding: var(--spacing-lg) 0;
    background-color: var(--white);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.review-card {
    background: var(--bg-light);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #ffd700;
    margin-bottom: 16px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h4 {
    margin-bottom: 20px;
    color: var(--white);
}

.footer p {
    color: #bbb;
}

.footer a {
    color: #bbb;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #777;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    display: inline;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .header-container {
        padding: 0 16px;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        transition: 0.3s;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .nav.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        font-size: 1.2rem;
    }

    .menu-toggle {
        display: block;
    }

    .sm-hidden {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .problem-grid,
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        width: 100%;
    }

    .row {
        flex-direction: column;
        gap: 0px;
    }

    .col-half {
        width: 100%;
    }

    .imgpul {
        width: 85%;
    }

    .features-list li {
        gap: 8px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .features-list strong {
        flex-basis: 100%;
        white-space: nowrap;
    }

    .features-list li > i {
        flex-shrink: 0;
    }

    .pricing-card-new {
        max-width: 100%;
        width: 100%;
    }

    .size-grid {
        grid-template-columns: 1fr 1fr;
    }

    .size-buttons {
        grid-template-columns: 1fr 1fr;
    }

    .amount {
        font-size: 2rem;
    }

    .card-image {
        width:300px;
    }

    .card-image-5 {
        width: 700px;
    }
}

/* Float Animation */
@keyframes float-up-down {
    0%, 100% {
        transform: translateY(0px) !important;
    }
    50% {
        transform: translateY(-40px) !important;
    }
}

.float-animation {
    display: inline-block !important;
    animation: float-up-down 4s ease-in-out infinite !important;
}

/* NEW COMPONENT STYLES FOR EXTENDED COPY */

/* Story Section */
.story-section {
    background-color: #fff0f0;
    /* Light Red/Warm tint to match palette */
    padding: var(--spacing-lg) 0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Decorative 'letter' behind story content */
.story-content {
    position: relative;
    z-index: 3;
    padding: 30px 28px;
}

.story-content::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0px;
    right: 0px;
    bottom: -6px;
    /* stronger paper look: slightly warm base, more visible grain and faint rules */
    background-image:
        linear-gradient(180deg, #fff6f6 0%, #fff0f0 100%),
        radial-gradient(rgba(14,27,77,0.04) 0.6px, transparent 0.9px),
        repeating-linear-gradient(0deg, rgba(14,27,77,0.06) 0px, rgba(14,27,77,0.06) 1px, transparent 1px, transparent 20px);
    background-size: auto, 5px 5px, auto;
    background-repeat: no-repeat, repeat, repeat;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(14,27,77,0.06);
    border: 1px solid rgba(14,27,77,0.05);
    transform: rotate(-0.6deg);
    z-index: -1; /* ensure paper is behind the text/content */
    pointer-events: none;
}

/* subtle folded corner effect */
.story-content::after {
    content: '';
    position: absolute;
    top: 12px;
    right: 28px;
    width: 70px;
    height: 48px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(0,0,0,0.03));
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    transform: rotate(6deg);
    z-index: 3;
    opacity: 0.8;
    pointer-events: none;
}

/* paper-stamp removed per request (use pure texture instead) */

@media (max-width: 900px) {
    .story-content { padding: 24px 20px; }
    .story-content::before { left: -12px; right: -12px; transform: rotate(-1.2deg); }
    .story-content::after { display: none; }
}

@media (max-width: 480px) {
    .story-content { padding: 18px 14px; }
    .story-content::before { display: none; }
}

.story-highlight {
    font-weight: 700;
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-top: 24px;
    display: block;
    text-align: center;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    text-align: center;
}

/* "Para quem ama" section */
.who-section {
    padding: 48px 0;
    background: transparent;
}

.who-grid {
    display: grid;
    grid-template-columns: 1fr; /* stack cards vertically on the right column */
    gap: 18px;
    align-items: stretch;
    max-width: 1000px;
    margin: 0 auto;
}

.who-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(14,27,77,0.06);
}

/* Media container inside who-card for an image + subtle overlay */
.who-card-media {
    width: 140px;
    height: 140px;
    flex: 0 0 140px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 24px rgba(14,27,77,0.08);
}

.who-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
    will-change: transform;
}

.who-card-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,114,114,0) 30%, rgba(0,0,0,0.18) 100%);
    mix-blend-mode: multiply;
    pointer-events: none;
}

.who-card:hover .who-card-img {
    transform: scale(1.04);
}

@media (max-width: 900px) {
    .who-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .who-section {
        padding-top: 0px;
    }

    .who-card-media {
        width: 100%;
        height: 220px;
        flex: 0 0 auto;
        border-radius: 12px;
    }
    .who-body { text-align: center; }
}

.who-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.who-body h3 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    color: var(--secondary-color);
}

.who-body p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 900px) {
    .who-grid { grid-template-columns: 1fr; }
}

/* Two-column wrapper for left/right split */
.who-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.who-left {
    flex: 1 1 40%;
    max-width: 46%;
}

.who-right {
    flex: 1 1 54%;
}

@media (max-width: 900px) {
    .who-row { flex-direction: column; padding-top: 35px; }
    .who-left, .who-right { max-width: 100%; }
}

/* Cards for stats */
.stat-item {
    background-color: #FFF0F0;
    padding: 28px 20px;
    border-radius: 16px;
    box-shadow: 0 6px 18px rgba(14,27,77,0.04);
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.stat-item p {
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Timeline / Steps Vertical */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 20px;
    margin-left: -2px;
}



.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 100%;
    margin-bottom: 24px;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: auto;
    background-color: var(--white);
    border: 4px solid var(--secondary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
    left: 10px;
}

.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-md) 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 16px;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text-light);
    width: 40%;
}

.comparison-table td:last-child {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Responsive Table */
@media (max-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .comparison-table td:first-child {
        width: 30%;
    }
}

/* Situation Boxes */
.situation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.situation-box {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-color);
}

.situation-box h4 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

/* Urgency Bar */
.urgency-bar {
    background-color: var(--accent-color);
    /* Use Contrast Red */
    color: var(--white);
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Trust Badges Simple */
.trust-badges-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: var(--spacing-sm);
    font-size: 0.85rem;
    color: var(--text-light);
}

.trust-badges-row span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-badges-row i {
    color: #2ecc71;
    /* Green check */
}

/* ===== MOBILE RESPONSIVO ===== */
@media (max-width: 768px) {
    /* Hero Section - Mobile Styling */
    .hero {
        padding-top: 40px;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero h3 {
        font-size: 1.2rem;
    }

    .hero p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .hero-content .badge {
        font-size: 11px;
        padding: 8px 16px;
    }

    .hero-features {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
        margin-top: 12px;
    }

    .feature-badge {
        /* dois por linha */
        flex: 0 0 48%;
        max-width: 48%;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 14px 16px;
    }

    .feature-badge:nth-child(3) {
        flex: 0 0 60%;
        max-width: 60%;
        margin: 12px auto 0;
    }

    .feature-icon { margin: 0 12px 0 0; }
    .feature-text { text-align: left; }

    .feature-icon {
        width: 28px;
        height: 28px;
        flex: 0 0 28px;
        font-size: 0.8rem;
    }

    /* garantir espaçamento positivo entre imagem e badges no mobile (sobrescreve margens negativas anteriores) */
    .hero-image {
        margin-top: 18px;
        margin-bottom: 32px;
        display: flex;
        justify-content: center;
    }

    .hero-img-asset {
        max-width: 400px;
    }
}

/* ===== ESPAÇAMENTO VERTICAL REDUZIDO NO MOBILE ===== */
@media (max-width: 768px) {
    section {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .qr-action,
    .storage,
    .parents-elderly,
    .emotion,
    .others,
    .config,
    .expert,
    .warranty,
    .pricing,
    .reviews,
    .brazil {
        padding-top: 32px !important;
        padding-bottom: 32px !important;
    }

    .situation-box {
        padding: 12px 14px;
    }

    .situation-box h4 {
        margin-bottom: 6px;
    }

    .story-section {
        padding: 24px 0 !important;
    }

    .story-content {
        padding: 18px 14px !important;
    }
}