/* GLOBAL RESET & VARIABLES */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #141414;
    --bg-card-hover: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --accent-red: #ff4d4d;
    --accent-green: #00e676;
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #FDB931 100%);
    --gradient-green: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    --gradient-red: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* ANIMATION VARIABLES */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ANIMATION KEYFRAMES */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes growWidth {
    from {
        width: 0;
    }
}

@keyframes subtleFloat {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* ANIMATION UTILITIES */
.reveal {
    opacity: 0;
    transform: translate3d(0, 30px, 0);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s var(--ease-out-back), transform 0.6s var(--ease-out-back);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

.delay-600 {
    transition-delay: 600ms;
}

.delay-700 {
    transition-delay: 700ms;
}

.delay-800 {
    transition-delay: 800ms;
}

.delay-900 {
    transition-delay: 900ms;
}

.delay-1000 {
    transition-delay: 1000ms;
}

.delay-1100 {
    transition-delay: 1100ms;
}

.delay-1500 {
    transition-delay: 1500ms;
}

.delay-2000 {
    transition-delay: 2000ms;
}

.delay-2500 {
    transition-delay: 2500ms;
}

/* Bar Animation Special */
.bar-track .bar-fill {
    width: 0;
    transition: width 3s var(--ease-out-expo);
}

/* Reverse Bar Animation (starts at 100%, shrinks to target) */
.bar-track .bar-fill.reverse-bar {
    width: 100%;
    transition: width 3s var(--ease-out-expo);
}

/* VS Badge Spin Loop */
@keyframes spinLoop {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    25% {
        transform: translate(-50%, -50%) rotate(400deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(360deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.vs-badge.spin-loop {
    animation: spinLoop 3s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Overshoot Pop Animation for Icons */
@keyframes overshootPop {
    0% {
        transform: scale(0.5);
    }

    50% {
        transform: scale(1.35);
    }

    75% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.overshoot-icon {
    transform: scale(0.5);
    display: inline-flex;
}

li.reveal.active .overshoot-icon,
.benefit-item.reveal.active .overshoot-icon {
    animation: overshootPop 0.6s var(--ease-out-back) forwards;
    animation-delay: 0.15s;
}

/* Multiplier Badge Overshoot - NEW (1 -> 1.1 -> 1) */
@keyframes badgeOvershoot {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(2);
    }

    100% {
        transform: scale(1);
    }
}

.mult-num-wrap.overshoot-pop {
    display: inline-block;
    transform: scale(1);
}

.mult-num-wrap.overshoot-pop.animated {
    animation: badgeOvershoot 0.4s ease-out forwards;
}

/* Emoji Particles */
@keyframes emojiFloat {
    0% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    100% {
        opacity: 0;
        transform: translateY(-80px) scale(0.5);
    }
}

.emoji-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 10;
}

.emoji-particle {
    position: absolute;
    font-size: 1.5rem;
    animation: emojiFloat 1.5s ease-out forwards;
}

.emoji-particle img {
    width: 24px;
    height: 24px;
}

/* Price Tag positioning for emoji container */
.price-tag {
    position: relative;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.text-gradient-red {
    background: var(--gradient-red);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.cta-button {
    display: inline-block;
    background: var(--gradient-green);
    color: white;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(46, 204, 113, 0.5);
}

.cta-button.giant {
    font-size: 1.5rem;
    padding: 25px 60px;
    width: 100%;
    max-width: 500px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.center-btn {
    text-align: center;
}

.margin-top-large {
    margin-top: 60px;
}

/* HERO SECTION */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 100px 0;
    /* Ensure padding for header/footer spacing */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/hero.webp') no-repeat center center/cover;
    filter: brightness(0.3);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
}

.badge {
    display: inline-block;
    background: rgba(255, 77, 77, 0.2);
    color: var(--accent-red);
    border: 1px solid var(--accent-red);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #ddd;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-disclaimer {
    margin-top: 15px;
    font-size: 0.9rem;
    color: #888;
}

/* SECTIONS COMMON */
section {
    padding: 80px 0;
}

.section-dark {
    background-color: var(--bg-dark);
}

.section-black {
    background-color: #000000;
}

.section-gradient {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #111 100%);
}

/* COMPARISON CARD MAIN */
.comparison-card-main {
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid #333;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-bottom: 50px;
}

.card-header-main {
    background: #222;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.card-body-main {
    display: flex;
    flex-direction: column;
    position: relative;
}

.side {
    flex: 1;
    padding: 40px;
    text-align: center;
    transition: background 0.3s;
}

.side.brazil {
    background: linear-gradient(180deg, rgba(255, 77, 77, 0.05) 0%, transparent 100%);
}

.side.usa {
    background: linear-gradient(180deg, rgba(0, 230, 118, 0.05) 0%, transparent 100%);
}

.flag-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.country-name {
    color: #888;
    margin-bottom: 10px;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.price-tag.red {
    color: var(--accent-red);
}

.price-tag.green {
    color: var(--accent-green);
}

.car-img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.car-img.grayscale {
    filter: grayscale(100%) contrast(1.2) drop-shadow(0 5px 10px rgba(0, 0, 0, 0.5));
    opacity: 0.8;
}

.stats-box {
    border: 1px solid #333;
    padding: 15px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.3);
}

.stats-box.red-border {
    border-color: rgba(255, 77, 77, 0.3);
}

.stats-box.green-border {
    border-color: rgba(0, 230, 118, 0.3);
}

.stats-box span {
    display: block;
}

.stats-box .label {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.stats-box .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.stats-box .sub {
    font-size: 0.8rem;
    color: #666;
}

.vs-badge {
    background: #333;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 4px solid var(--bg-card);
    z-index: 2;
}

/* PURCHASING POWER SECTION */
.purchasing-power-section {
    margin-top: 40px;
}

.wage-header {
    text-align: center;
    margin-bottom: 30px;
}

.wage-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.wage-comparison {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    background: #1a1a1a;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #333;
    display: inline-flex;
}

.wage-box {
    text-align: center;
}

.wage-box .flag {
    font-size: 1.5rem;
    display: block;
}

.wage-box .value {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.wage-box.br .value {
    color: var(--accent-red);
}

.wage-box.us .value {
    color: var(--accent-green);
}

.vs-small {
    font-weight: 900;
    color: #555;
    font-size: 0.9rem;
}

.power-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.power-card {
    background: var(--bg-card);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.card-top .icon {
    font-size: 1.8rem;
}

.card-top h4 {
    font-size: 1.1rem;
    margin: 0;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bar-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.bar-row .label {
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    justify-content: space-between;
}

.bar-track {
    height: 12px;
    background: #222;
    border-radius: 6px;
    overflow: hidden;
    width: 100%;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
}

.bar-fill.red {
    background: var(--accent-red);
}

.bar-fill.green {
    background: var(--accent-green);
}

.multiplier-badge {
    margin-top: 15px;
    background: rgba(0, 230, 118, 0.15);
    color: var(--accent-green);
    text-align: center;
    padding: 8px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    border: 1px solid rgba(0, 230, 118, 0.3);
    text-transform: uppercase;
}

/* PAIN POINTS */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.pain-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--accent-red);
}

.icon-x {
    color: var(--accent-red);
    font-weight: 900;
    font-size: 1.2rem;
}

.chaos-box {
    background: #111;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #333;
}

.chaos-box h3 {
    margin-bottom: 20px;
    color: var(--accent-red);
}

.stat-row {
    margin-bottom: 15px;
}

.stat-row span {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #888;
}

.bar {
    height: 10px;
    background: #333;
    border-radius: 5px;
    overflow: hidden;
}

.fill {
    height: 100%;
    border-radius: 5px;
    width: 0;
    transition: width 1.2s var(--ease-out-expo);
}

.fill.red {
    background: var(--accent-red);
}

/* LIFESTYLE PREMIUM REDESIGN */
.lifestyle-premium {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background-color: #000;
}

.lifestyle-premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 110%;
    height: 110%;
    background: url('images/pp') no-repeat center center/cover;
    filter: brightness(0.35);
    z-index: 1;
}

.lifestyle-premium-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lifestyle-premium-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.highlight-green {
    color: var(--accent-green);
    text-shadow: 0 0 30px rgba(0, 230, 118, 0.5);
}

.lifestyle-premium-subtitle {
    font-size: 1.3rem;
    font-style: italic;
    color: #ddd;
    margin-bottom: 50px;
    font-weight: 300;
}

.benefits-list {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: left;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 230, 118, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--accent-green);
    box-shadow: 0 0 20px rgba(0, 230, 118, 0.3);
    transform: translateX(5px);
}

.check-icon {
    background: var(--accent-green);
    color: #000;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.4;
}

.benefit-text strong {
    color: var(--accent-green);
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial-box {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #222;
}

.stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-box p {
    font-style: italic;
    color: #ccc;
    margin-bottom: 20px;
}

.author strong {
    display: block;
    color: white;
}

.author span {
    font-size: 0.8rem;
    color: #666;
}

/* SOLUTION */
.section-solution {
    background: url('images/lifestyle.webp') no-repeat center center/cover;
    position: relative;
    padding: 100px 0;
}

.section-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.solution-box {
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 20, 0.9);
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #333;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0, 230, 118, 0.1);
}

.solution-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.solution-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ccc;
}

.solution-steps {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 40px;
}

.solution-steps li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    color: #fff;
    font-weight: 600;
}

.scarcity {
    margin-top: 20px;
    color: #FFD700;
    font-size: 0.9rem;
    font-weight: 600;
}

footer {
    background: black;
    padding: 40px 0;
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

.flag-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.flag-small {
    width: 20px;
    height: 20px;
    margin-right: 4px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

/* 3D CAROUSEL */
.carousel-3d-container {
    position: relative;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 30px;
    perspective: 1000px;
}

.carousel-3d {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 4;
    transform-style: preserve-3d;
}

.carousel-3d-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: rotateY(90deg) scale(0.8);
    transition: all 0.7s var(--ease-out-expo);
}

.carousel-3d-slide.active {
    opacity: 1;
    transform: rotateY(0deg) scale(1);
    z-index: 2;
}

.carousel-3d-slide.prev {
    opacity: 0.3;
    transform: rotateY(-40deg) translateX(-60%) scale(0.85);
    z-index: 1;
}

.carousel-3d-slide.next {
    opacity: 0.3;
    transform: rotateY(40deg) translateX(60%) scale(0.85);
    z-index: 1;
}

.carousel-3d-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-indicators .indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicators .indicator.active {
    background: var(--accent-green);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.5);
}

.carousel-3d-container .profile-badge {
    position: absolute;
    bottom: 60px;
    right: -10px;
    background: var(--gradient-green);
    color: #000;
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 230, 118, 0.4);
    z-index: 10;
}

.carousel-3d-container .profile-badge strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
}

.carousel-3d-container .profile-badge span {
    font-size: 0.8rem;
    font-weight: 600;
}


/* RESPONSIVE OVERRIDES - MOBILE FIRST & ONLY */
/* We keep the default styles as the mobile styles. 
   We will ensure everything stacks by default. */

@media (min-width: 768px) {
    /* Even on desktop, we want to maintain a contained, mobile-like feel for the content 
       or just allow a grid if it helps readability without breaking the 'mobile' request.
       However, the user said 'não usaremos desktop', so we can keep the grid for larger screens 
       to avoid comically wide elements, but ensure the mobile view is perfect. */

    .hero-title {
        font-size: 3.5rem;
    }

    /* Reduced from 4.5rem to be safer */

    .card-body-main {
        flex-direction: row;
    }

    /* Keep the power grid as a grid on large screens for better use of space, 
       but the user wants mobile focus. Let's make it a 2-column grid on tablet+ 
       so it doesn't look stretched. */
    .power-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* PROFILE SECTION */
.profile-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #000 0%, #111 100%);
    position: relative;
    overflow: hidden;
}

.profile-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

.profile-img-box {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.profile-img {
    width: 100%;
    border-radius: 20px;
    border: 1px solid #333;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    filter: brightness(0.9) contrast(1.1);
}

.profile-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-card);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid var(--accent-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-badge strong {
    color: var(--accent-green);
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.profile-badge span {
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-content {
    text-align: left;
}

.profile-label {
    color: var(--accent-green);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
}

.profile-title {
    font-size: 2.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
}

.profile-text {
    color: #ccc;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.profile-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    border-top: 1px solid #333;
    padding-top: 30px;

}

.p-stat h4 {
    font-size: 2rem;
    color: var(--accent-green);
    margin-bottom: 5px;
}

.p-stat span {
    color: #888;
    font-size: 0.9rem;
}

@media (min-width: 768px) {
    .profile-container {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .profile-img-box {
        flex: 1;
    }

    .profile-content {
        flex: 1;
    }
}


@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price-tag {
        font-size: 2rem;
    }

    .card-body-main {
        padding: 10px;
    }

    .side {
        padding: 20px 10px;
    }

    .vs-badge {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Lifestyle Premium Mobile Adjustments */
    .lifestyle-premium {
        padding: 60px 0;
    }

    .lifestyle-premium-title {
        font-size: 1.6rem;
    }

    .lifestyle-premium-subtitle {
        font-size: 1.1rem;
    }

    .benefit-item {
        padding: 15px;
    }

    .benefit-text {
        font-size: 1rem;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }

    /* Profile Section Mobile Adjustments */
    .profile-section {
        padding: 50px 0;
    }

    .profile-title {
        font-size: 1.8rem;
    }

    .profile-img-box {
        max-width: 100%;
        margin-bottom: 20px;
    }

    .profile-badge {
        position: absolute;
        bottom: -25px;
        right: 50%;
        transform: translateX(50%);
        width: max-content;
        padding: 10px 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
        z-index: 5;
    }

    .profile-badge strong {
        font-size: 1.2rem;
    }

    .profile-badge span {
        font-size: 0.7rem;
    }

    .profile-stats {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
    }

    .p-stat {
        text-align: center;
    }

    .profile-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .profile-text {
        font-size: 1rem;
    }

    .wage-comparison {
        flex-direction: column;
        width: 100%;
    }

    .wage-box {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: center;
    }

    .side {
        padding: 30px 15px;
    }

    .price-tag {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .solution-box {
        padding: 30px 20px;
    }

    .side.brazil {
        border-bottom: 1px solid #333;
        padding-bottom: 50px;
        /* Space for the VS badge */
    }

    .side.usa {
        padding-top: 50px;
        /* Space for the VS badge */
    }
}