/* ===== VARIABLES CSS ===== */
:root {
    /* Colors */
    --primary-color: #065AD8;
    --primary-color-light: #4A90E2;
    --primary-color-dark: #044BB8;

    --secondary-color: #F8FAFC;
    --secondary-color-light: #FFFFFF;
    --secondary-color-dark: #E2E8F0;

    --text-color: #334155;
    --text-color-light: #64748B;
    --text-color-dark: #1E293B;

    --accent-color: #10B981;
    --accent-color-light: #34D399;

    --border-color: #E2E8F0;
    --shadow-color: rgba(15, 23, 42, 0.08);
    --shadow-color-hover: rgba(15, 23, 42, 0.15);

    /* Typography */
    --body-font: 'Inter', sans-serif;
    --h1-font-size: 3.5rem;
    --h2-font-size: 2.5rem;
    --h3-font-size: 1.5rem;
    --normal-font-size: 1rem;
    --small-font-size: 0.875rem;
    --smaller-font-size: 0.75rem;

    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semi-bold: 600;
    --font-bold: 700;

    /* Spacing */
    --mb-0-25: 0.25rem;
    --mb-0-5: 0.5rem;
    --mb-0-75: 0.75rem;
    --mb-1: 1rem;
    --mb-1-25: 1.25rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /* Z-index */
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Layout */
    --header-height: 4.5rem;
}

/* Responsive Typography */
@media screen and (max-width: 992px) {
    :root {
        --h1-font-size: 2.75rem;
        --h2-font-size: 2rem;
        --h3-font-size: 1.25rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.75rem;
        --h3-font-size: 1.125rem;
    }
}

/* ===== BASE ===== */
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--secondary-color-light);
    color: var(--text-color);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    color: var(--text-color-dark);
    font-weight: var(--font-semi-bold);
    line-height: 1.2;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* ===== REUSABLE CSS CLASSES ===== */
.container {
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

.section {
    padding: 6rem 0 2rem;
    content-visibility: auto;
    contain-intrinsic-size: auto 500px;
}

.section__header {
    text-align: center;
    margin-bottom: var(--mb-3);
}

.section__title {
    font-size: var(--h2-font-size);
    color: var(--text-color-dark);
    margin-bottom: var(--mb-1);
}

.section__subtitle {
    font-size: var(--normal-font-size);
    color: var(--text-color-light);
    max-width: 600px;
    margin: 0 auto;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: var(--secondary-color-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(6, 90, 216, 0.3);
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 90, 216, 0.4);
}

.button:hover::before {
    left: 100%;
}

.button__icon {
    font-size: 1.2rem;
    transition: var(--transition);
}

.button:hover .button__icon {
    transform: translateX(4px);
}

/* ===== HEADER & NAV ===== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: var(--z-fixed);
    background-color: var(--secondary-color-light);
    box-shadow: 0 2px 16px var(--shadow-color);
    transition: var(--transition);
}

.header.scroll-header {
    background-color: var(--secondary-color-light);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 16px var(--shadow-color);
}

.header.hero-transparent {
    background-color: transparent;
    box-shadow: none;
}

.nav__logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo h2 {
    color: var(--primary-color);
    font-weight: var(--font-bold);
    font-size: 1.5rem;
}

.nav__list {
    display: flex;
    column-gap: 2rem;
}

.nav__link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 50%;
    background-color: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav__link:hover {
    color: var(--primary-color);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__toggle,
.nav__close {
    display: none;
}

/* ===== HERO ===== */
.hero {
    /* Fallback para browsers antigos */
    min-height: 100vh;
    
    /* Cálculo dinâmico: altura total - altura do header */
    height: calc(100vh - var(--header-height));
    max-height: calc(100vh - var(--header-height));
    
    /* Suporte a viewport dinâmica para mobile (considera barra de endereço) */
    /* Sobrescreve as propriedades acima se suportado */
    height: calc(100dvh - var(--header-height));
    max-height: calc(100dvh - var(--header-height));
    
    padding-top: var(--header-height); /* Altura do header fixo */
    padding-bottom: 2rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-color-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    border: none;
    outline: none;
}

/* Ajustes específicos para mobile */
@media screen and (max-width: 768px) {
    .hero {
        margin: 0;
        padding: 0;
        border: none;
        outline: none;
        background-attachment: fixed; /* Evita problemas com bounce no iOS */
    }
    
    /* Garantir que não haja espaços extras */
    .hero::before,
    .hero::after {
        content: none;
    }
    
    /* Remover qualquer margem do container */
    .hero__container {
        margin: 0;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(6, 90, 216, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 90, 216, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        conic-gradient(from 0deg at 50% 50%,
            transparent 0deg,
            rgba(6, 90, 216, 0.03) 60deg,
            transparent 120deg,
            rgba(6, 90, 216, 0.02) 180deg,
            transparent 240deg,
            rgba(6, 90, 216, 0.03) 300deg,
            transparent 360deg);
    animation: rotate 60s linear infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: linear-gradient(135deg, rgba(6, 90, 216, 0.1), rgba(6, 90, 216, 0.05));
    border-radius: 50%;
    animation: float-up 20s infinite linear;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 85%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.floating-element:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 90%;
    left: 70%;
    animation-delay: 10s;
    animation-duration: 35s;
}

.floating-element:nth-child(4) {
    width: 30px;
    height: 30px;
    top: 70%;
    left: 5%;
    animation-delay: 15s;
    animation-duration: 20s;
}

.floating-element:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 85%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 28s;
}

@keyframes float-up {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric shapes */
.hero__geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.geometric-shape {
    position: absolute;
    border: 2px solid rgba(6, 90, 216, 0.1);
    animation: geometric-float 15s ease-in-out infinite;
}

.geometric-shape:nth-child(1) {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 15%;
    border-radius: 20px;
    animation-delay: 0s;
}

.geometric-shape:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 5%;
    border-radius: 50%;
    animation-delay: 3s;
}

.geometric-shape:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 5%;
    transform: rotate(45deg);
    animation-delay: 6s;
}

@keyframes geometric-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

.hero__data {
    padding-left: 2rem;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.hero__title {
    font-size: var(--h1-font-size);
    font-weight: var(--font-bold);
    margin-bottom: var(--mb-1);
    line-height: 1.1;
}

.hero__title-accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-color-light);
    margin-bottom: var(--mb-2);
    line-height: 1.7;
}

.hero__button {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

.hero__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__illustration {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.phone {
    width: 320px;
    height: 650px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 8px;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 0 2px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    border: 1px solid #333;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.phone::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 25px;
    background: #1a1a1a;
    border-radius: 15px;
    z-index: 2;
}

.phone__status-bar {
    position: absolute;
    top: 20px;
    left: 10px;
    right: 10px;
    height: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 4;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
}

.phone__status-left {
    display: flex;
    align-items: center;
    gap: 4px;
}

.phone__status-right {
    display: flex;
    align-items: center;
    gap: 4px;
}

.status__time {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.status__signal {
    display: flex;
    gap: 2px;
    align-items: flex-end;
}

.signal__bar {
    width: 3px;
    background: #ffffff;
    border-radius: 1px;
}

.signal__bar:nth-child(1) {
    height: 4px;
}

.signal__bar:nth-child(2) {
    height: 6px;
}

.signal__bar:nth-child(3) {
    height: 8px;
}

.signal__bar:nth-child(4) {
    height: 10px;
}

.status__carrier {
    font-size: 12px;
    margin-left: 2px;
}

.status__wifi {
    width: 15px;
    height: 11px;
    position: relative;
}

.status__wifi::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border: 2px solid #ffffff;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    top: -2px;
}

.status__wifi::after {
    content: '';
    position: absolute;
    width: 9px;
    height: 9px;
    border: 2px solid #ffffff;
    border-bottom: none;
    border-radius: 9px 9px 0 0;
    top: 1px;
    left: 3px;
}

.status__battery {
    width: 24px;
    height: 12px;
    border: 1px solid #ffffff;
    border-radius: 2px;
    position: relative;
    background: #ffffff;
}

.status__battery::before {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: #ffffff;
    border-radius: 0 1px 1px 0;
}

.status__battery::after {
    content: '';
    position: absolute;
    left: 1px;
    top: 1px;
    width: 18px;
    height: 8px;
    background: #34c759;
    border-radius: 1px;
}

.phone__screen {
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    border: 1px solid #333;
}

.whatsapp__header {
    background: #ffffff;
    padding: 40px 16px 4px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp__back {
    height: 18px;
    cursor: pointer;
}

.whatsapp__avatar-img {
    width: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
}

.whatsapp__contact-info {
    flex: 1;
}

.whatsapp__contact-name {
    color: rgb(0, 0, 0);
    font-weight: 600;
    font-size: 0.9rem;
    margin: 0;
}

.whatsapp__contact-status {
    color: #b3b3b3;
    font-size: 0.8rem;
    margin: 0;
}

.whatsapp__menu {
    height: 22px;
    cursor: pointer;
}

.whatsapp__chat {
    background-image: url(public/img/background.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: calc(100% - 130px);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: hidden;
}

.whatsapp__chat::-webkit-scrollbar {
    display: none;
}

.whatsapp__chat {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.chat__message {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.4;
    animation: messageSlide 0.6s ease-out;
    position: relative;
    word-wrap: break-word;
}

@keyframes messageSlide {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.chat__message--bot {
    background-color: #ffffff;
    color: #000000;
    align-self: flex-start;
    border-radius: 8px 8px 8px 2px;
}

.chat__message--user {
    background-color: #DCF8C7;
    color: rgb(0, 0, 0);
    align-self: flex-end;
    border-radius: 8px 8px 2px 8px;
}

.chat__message--bot::before {
    content: '';
    position: absolute;
    left: -3px;
    bottom: 0;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-right-color: #ffffff;
    border-left: 0;
    border-bottom: 0;
}

.chat__message--user::after {
    content: '';
    position: absolute;
    right: -3px;
    bottom: 0;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-left-color: #DCF8C7;
    border-right: 0;
    border-bottom: 0;
}

.chat__time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 4px;
    text-align: right;
}

.whatsapp__input-area {
    background: #1e2428;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid #2a2f32;
}

.whatsapp__input {
    flex: 1;
    background: #2a2f32;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    color: #e5e7eb;
    font-size: 0.85rem;
}

.whatsapp__send {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ===== BENEFITS ===== */
.benefits {
    background-color: var(--secondary-color-light);
}

.benefits__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit__icon__svg {
    font-size: 2rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color-light);
    border-radius: 12px;
}

.benefit__card {
    background: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px var(--shadow-color);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.highlight__icon__svg {
    width: 20px;
    height: 20px;
}

.benefit__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
}

.benefit__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow-color-hover);
}

.benefit__icon {
    margin-bottom: var(--mb-1-5);
    font-size: 2rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color-light);
    border-radius: 12px;
}

.icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(6, 90, 216, 0.3);
}

.benefit__title {
    font-size: var(--h3-font-size);
    margin-bottom: var(--mb-1);
    color: var(--text-color-dark);
}

.benefit__description {
    color: var(--text-color-light);
    line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: var(--secondary-color-light);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(6, 90, 216, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Journey Container */
.journey__container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Progress Bar */
.journey__progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.progress__line {
    position: absolute;
    height: 4px;
    width: 300px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.progress__line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-color-light));
    border-radius: 2px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress__dots {
    display: flex;
    gap: 100px;
    position: relative;
    z-index: 2;
}

.progress__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--border-color);
    border: 4px solid var(--secondary-color-light);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.progress__dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(6, 90, 216, 0.2);
}

.progress__dot:hover {
    transform: scale(1.1);
}

/* Main Display */
.journey__display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

/* Phone Display */
.display__phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone__mockup {
    position: relative;
    width: 350px;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Mockup Scenes */
.mockup__scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.mockup__scene.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.mockup__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.3));
    transition: var(--transition);
}

.mockup__scene:hover .mockup__image {
    transform: scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}



/* Journey Info */
.journey__info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info__step {
    opacity: 0.5;
    transform: translateX(20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.info__step.active {
    opacity: 1;
    transform: translateX(0);
}

.info__step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info__number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: var(--font-bold);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(6, 90, 216, 0.3);
}

.info__content {
    flex: 1;
}

.info__title {
    font-size: var(--h3-font-size);
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
    font-weight: var(--font-semi-bold);
}

.info__description {
    color: var(--text-color-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info__highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    width: fit-content;
}

.highlight__icon {
    font-size: 1rem;
    align-items: center;
    justify-content: center;
    display: flex;
}

.highlight__text {
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
    color: var(--text-color);
}

/* Stats */
.journey__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat__item {
    text-align: center;
    padding: 2rem;
    background: var(--secondary-color-light);
    border-radius: 16px;
    box-shadow: 0 4px 16px var(--shadow-color);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px var(--shadow-color-hover);
}

.stat__number {
    font-size: 2.5rem;
    font-weight: var(--font-bold);
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat__label {
    color: var(--text-color-light);
    font-size: var(--small-font-size);
    font-weight: var(--font-medium);
}

/* ===== PRICING ===== */
.pricing {
    background-color: var(--secondary-color-light);
}

/* Pricing Toggle */
.pricing__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 2rem auto 3rem;
    background-color: #EEF2FF;
    border-radius: 50px;
    padding: 0.25rem;
    width: fit-content;
}

.toggle__option {
    padding: 0.625rem 1.5rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    font-weight: var(--font-medium);
    font-size: var(--normal-font-size);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--body-font);
}

.toggle__option--active {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.toggle__option:hover:not(.toggle__option--active) {
    color: var(--primary-color);
}

/* Pricing Container */
.pricing__container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
}

/* Para telas muito grandes (ultrawide) - garantir que os cards não fiquem muito largos */
@media screen and (min-width: 1400px) {
    .pricing__container {
        max-width: 1300px;
        gap: 1.5rem;
    }
}

/* Pricing Cards */
.pricing__card {
    background-color: var(--secondary-color-light);
    padding: 2rem 1.75rem;
    border-radius: 16px;
    border: 1px solid #E5E7EB;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.pricing__card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.pricing__card--featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(var(--primary-color), 0.15);
}

.pricing__card--featured:hover {
    box-shadow: 0 15px 40px rgba(var(--primary-color), 0.25);
    transform: translateY(-4px);
}

/* Badge */
.pricing__badge {
    display: inline-block;
    background-color: #EEF2FF;
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: var(--font-semi-bold);
    margin-bottom: 1rem;
    width: fit-content;
}

/* Pricing Header */
.pricing__header {
    margin-bottom: 1.5rem;
}

.pricing__plan {
    font-size: 1.25rem;
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
    font-weight: var(--font-semi-bold);
}

.pricing__description {
    font-size: 0.9375rem;
    color: var(--text-color-light);
    line-height: 1.5;
    margin: 0;
}

/* Pricing Price */
.pricing__price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.pricing__currency {
    font-size: 2rem;
    color: var(--text-color-dark);
    font-weight: var(--font-semi-bold);
}

.pricing__amount {
    font-size: 3.75rem;
    font-weight: var(--font-bold);
    color: var(--text-color-dark);
    line-height: 1;
    letter-spacing: -0.02em;
    display: flex;
    align-items: flex-start;
}

.price__main {
    font-size: 3.75rem;
    font-weight: var(--font-bold);
}

.price__cents {
    font-size: 1.75rem;
    font-weight: var(--font-regular);
    color: var(--text-color-light);
    margin-top: 0.5rem;
    margin-left: 2px;
}

.pricing__period {
    font-size: 1rem;
    color: var(--text-color-light);
    font-weight: var(--font-regular);
}

/* Pricing Button */
.pricing__button {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 1px solid #E5E7EB;
    background-color: white;
    color: var(--text-color-dark);
    border-radius: 8px;
    font-weight: var(--font-medium);
    font-size: 0.9375rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 2rem;
    display: inline-block;
    font-family: var(--body-font);
}

.pricing__button:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.pricing__button--featured {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.footer__logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.pricing__button--featured:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Pricing Features */
.pricing__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.pricing__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.9375rem;
}

.feature__icon {
    width: 20px;
    height: 20px;
    background-color: #EEF2FF;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--font-bold);
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* ===== PRICING CALCULATOR ===== */
.pricing-calculator {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.calculator__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Calculator Card */
.calculator__card {
    background: var(--secondary-color-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.calculator__title {
    font-size: 1.5rem;
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
    font-weight: var(--font-semi-bold);
}

.calculator__subtitle {
    color: var(--text-color-light);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
}

.calculator__input-group {
    margin-bottom: 2rem;
}

.calculator__label {
    display: block;
    font-size: var(--small-font-size);
    color: var(--text-color-dark);
    font-weight: var(--font-medium);
    margin-bottom: 0.5rem;
}

.calculator__input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.calculator__currency {
    position: absolute;
    left: 1.25rem;
    font-size: 1.25rem;
    font-weight: var(--font-semi-bold);
    color: var(--text-color-dark);
}

.calculator__input {
    width: 100%;
    padding: 1rem 1.25rem 1rem 3rem;
    font-size: 1.5rem;
    font-weight: var(--font-semi-bold);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    background: var(--secondary-color);
    color: var(--text-color-dark);
    transition: var(--transition);
    font-family: var(--body-font);
}

.calculator__input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(6, 90, 216, 0.1);
}

/* Breakdown */
.calculator__breakdown {
    background: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.breakdown__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    color: var(--text-color);
}

.breakdown__item--highlight {
    background: rgba(6, 90, 216, 0.05);
    padding: 0.75rem 1rem;
    margin: 0 -1rem;
    border-radius: 8px;
}

.breakdown__label {
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breakdown__info {
    font-size: 0.875rem;
    cursor: help;
    opacity: 0.6;
    transition: var(--transition);
}

.breakdown__info:hover {
    opacity: 1;
}

.breakdown__value {
    font-weight: var(--font-semi-bold);
    font-size: 1rem;
}

.breakdown__divider {
    height: 2px;
    background: var(--border-color);
    margin: 1rem 0;
}

.breakdown__item--total {
    padding-top: 1rem;
}

.breakdown__item--you-receive {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    padding: 1rem;
    margin: 0.5rem -1rem -0.5rem;
    border-radius: 8px;
}

.breakdown__value--total {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.breakdown__value--receive {
    color: var(--accent-color);
    font-size: 1.25rem;
}

/* Fees Card */
.fees__card {
    background: var(--secondary-color-light);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.fees__title {
    font-size: 1.5rem;
    color: var(--text-color-dark);
    margin-bottom: 1.5rem;
    font-weight: var(--font-semi-bold);
}

.fee__item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
    background: var(--secondary-color);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.fee__item:hover {
    box-shadow: 0 4px 16px var(--shadow-color);
    transform: translateY(-2px);
}

.fee__item--warning {
    background: rgba(255, 193, 7, 0.05);
    border-color: rgba(255, 193, 7, 0.2);
}

.fee__icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-color-light);
    border-radius: 12px;
}

.fee__content {
    flex: 1;
}

.fee__name {
    font-size: 1.125rem;
    color: var(--text-color-dark);
    margin-bottom: 0.5rem;
    font-weight: var(--font-semi-bold);
}

.fee__description {
    color: var(--text-color-light);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.fee__description strong {
    color: var(--text-color-dark);
    font-weight: var(--font-semi-bold);
}

.fee__tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-color);
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: var(--font-medium);
}

.fee__tag--warning {
    background: rgba(255, 193, 7, 0.1);
    color: #d97706;
}

.fees__note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(6, 90, 216, 0.05), rgba(6, 90, 216, 0.02));
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-color);
}

.fees__note strong {
    color: var(--text-color-dark);
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color-light));
    color: var(--secondary-color-light);
}

.cta__container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta__title {
    font-size: var(--h2-font-size);
    color: var(--secondary-color-light);
    margin-bottom: var(--mb-1);
}

.cta__description {
    font-size: 1.125rem;
    margin-bottom: var(--mb-2-5);
    opacity: 0.9;
    line-height: 1.7;
}

.cta__button {
    background: var(--secondary-color-light);
    color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.cta__button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.4);
}

/* ===== CONTACT ===== */
.contact {
    background-color: var(--secondary-color-light);
}

.contact__container {
    max-width: 600px;
    margin: 0 auto;
}

.contact__form {
    background-color: var(--secondary-color-light);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 16px 48px var(--shadow-color);
    border: 1px solid var(--border-color);
}

.contact__inputs {
    display: grid;
    gap: 1.5rem;
    margin-bottom: var(--mb-2);
}

.contact__content {
    position: relative;
}

.contact__label {
    font-size: var(--small-font-size);
    color: var(--text-color-dark);
    font-weight: var(--font-medium);
    margin-bottom: var(--mb-0-5);
    display: block;
}

.contact__input {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    outline: none;
    padding: 1rem 1.25rem;
    transition: var(--transition);
}

.contact__input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(6, 90, 216, 0.1);
}

.contact__textarea {
    resize: none;
    font-family: var(--body-font);
}

.contact__button {
    width: 100%;
    justify-content: center;
    font-size: 1.125rem;
    padding: 1.25rem 2rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--text-color-dark);
    color: var(--secondary-color-light);
    padding: 3rem 0 2rem;
}

.footer__container {
    text-align: center;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: var(--mb-2);
}

.footer__title {
    font-size: var(--h3-font-size);
    color: var(--primary-color);
    margin-bottom: var(--mb-1);
}

.footer__description {
    color: var(--secondary-color-dark);
    line-height: 1.6;
}

.footer__subtitle {
    font-size: var(--normal-font-size);
    margin-bottom: var(--mb-1);
    color: var(--secondary-color-light);
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer__link {
    color: var(--secondary-color-dark);
    transition: var(--transition);
}

.footer__link:hover {
    color: var(--primary-color);
}

.footer__copy {
    padding-top: 2rem;
    border-top: 1px solid var(--secondary-color-dark);
    color: var(--secondary-color-dark);
    font-size: var(--small-font-size);
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color-dark);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fee__icon-svg {
    height: 2rem;
    width: 2rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 992px) {
    .container {
        margin-left: var(--mb-1-5);
        margin-right: var(--mb-1-5);
    }

    .phone__status-left img {
        height: 10px;
    }

    .phone__status-right img {
        height: 10px;
    }

    .steps__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .step__number::after {
        display: none;
    }
}

/* Telas entre 1024px e 820px - 2x2 grid */
@media screen and (max-width: 1024px) and (min-width: 820px) {
    .pricing__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 800px;
    }
}

/* Telas menores que 820px - 1 coluna */
@media screen and (max-width: 819px) {
    .pricing__container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 500px;
    }

    .calculator__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .calculator__card,
    .fees__card {
        padding: 2rem 1.5rem;
    }

    .fee__item {
        padding: 1.25rem;
    }

    .pricing__card--featured {
        transform: scale(1);
    }

    .pricing__card--featured:hover {
        transform: translateY(-4px);
    }

    .pricing__amount {
        font-size: 3rem;
    }

    .pricing__toggle {
        margin: 1.5rem auto 2rem;
    }

    .toggle__option {
        padding: 0.5rem 1.25rem;
        font-size: 0.9375rem;
    }

    .nav__menu {
        position: fixed;
        top: -100%;
        left: 0;
        width: 100%;
        background-color: var(--secondary-color-light);
        padding: 2rem 1.5rem 4rem;
        box-shadow: 0 4px 16px var(--shadow-color);
        border-radius: 0 0 1.5rem 1.5rem;
        transition: var(--transition);
        z-index: calc(var(--z-fixed) - 1);
        transform: translateY(-100%);
    }

    .nav__menu.show-menu {
        top: 0;
        transform: translateY(0);
    }

    /* Force menu to stay closed - override any other styles */
    .nav__menu:not(.show-menu) {
        top: -100% !important;
        transform: translateY(-100%) !important;
    }

    .nav__list {
        flex-direction: column;
        row-gap: 1.5rem;
    }

    .nav__link {
        font-size: 1.125rem;
    }

    .nav__close {
        position: absolute;
        top: 0.5rem;
        right: 1.25rem;
        font-size: 1.5rem;
        cursor: pointer;
        color: var(--text-color);
    }

    .nav__toggle {
        font-size: 1.25rem;
        cursor: pointer;
        color: var(--text-color);
    }

    .nav__toggle,
    .nav__close {
        display: block;
    }

    .section {
        padding: 4rem 0 2rem;
    }

    .floating-element {
        display: none;
        /* Hide floating elements on mobile for performance */
    }

    .geometric-shape {
        opacity: 0.5;
        /* Reduce opacity on mobile */
    }

    .benefits__container {
        grid-template-columns: 1fr;
    }

    .journey__display {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .phone__mockup {
        width: 280px;
        height: 560px;
    }

    .progress__dots {
        gap: 60px;
    }

    .progress__line {
        width: 200px;
    }

    .journey__stats {
        grid-template-columns: 1fr;
    }

    .contact__form {
        padding: 2rem 1.5rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Ajustes adicionais para telas menores que 720px */
@media screen and (max-width: 720px) {
  .pricing__card {
    padding: 1.5rem 1.25rem;
  }

  .pricing__amount {
    font-size: 2.5rem;
  }

  .price__main {
    font-size: 2.5rem;
  }

  .price__cents {
    font-size: 1.25rem;
    margin-top: 0.4rem;
  }

  .pricing__currency {
    font-size: 1.5rem;
  }

  .pricing__plan {
    font-size: 1.125rem;
  }

  .pricing__description {
    font-size: 0.875rem;
  }

  .pricing__button {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .pricing__feature {
    font-size: 0.875rem;
  }

  .toggle__option {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }

  .calculator__card,
  .fees__card {
    padding: 1.5rem;
  }

  .calculator__input {
    font-size: 1.25rem;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
  }

  .calculator__currency {
    font-size: 1rem;
    left: 1rem;
  }

  .breakdown__value--total {
    font-size: 1.25rem;
  }

  .breakdown__value--receive {
    font-size: 1.125rem;
  }

  .fee__item {
    flex-direction: column;
    padding: 1rem;
  }

  .fee__icon {
    width: 45px;
    height: 45px;
    font-size: 1.75rem;
  }

  .fee__name {
    font-size: 1rem;
  }

  .fee__description {
    font-size: 0.875rem;
  }

  .fees__note {
    font-size: 0.875rem;
    padding: 1rem;
  }

  .hero__title {
    font-size: 1.8rem;
    text-align: center;
  }

  .hero__data {
    padding-left: 0;
  }
  
  .hero__description {
    font-size: 0.9rem;
  }

  .hero__container {
    padding-top: 0rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero__img {
    order: -1;
  }
  
  .phone {
    width: min(220px, 55vw);
    height: min(440px, 110vw);
    padding: 6px;
    max-width: 220px;
    max-height: 440px;
    border-radius: 35px;
  }
  
  .phone::before {
    width: 56px;
    height: 15px;
    top: 12px;
    border-radius: 10px;
  }
  
  .phone__status-bar {
    padding: 8px 12px;
    font-size: 9px;
    height: 10px;
    top: 12px;
    left: 16px;
    right: 8px;
  }
  
  .status__time {
    font-size: 10px;
  }
  
  .status__battery {
    width: 16px;
    height: 8px;
  }
  
  .status__wifi {
    width: 10px;
    height: 7px;
  }
  
  .phone__screen {
    border-radius: 26px;
  }
  
  .whatsapp__header {
    padding: 22px 12px 6px;
    gap: 8px;
  }

  .whatsapp__back {
    height: 14px;
  }
  
  .whatsapp__avatar {
    width: 24px;
    height: 24px;
    font-size: 0.55rem;
  }
  
  .whatsapp__contact-name {
    font-size: 0.58rem;
  }
  
  .whatsapp__contact-status {
    font-size: 0.55rem;
  }

  .whatsapp__menu {
    height: 15px;
  }

  .whatsapp__chat {
    height: calc(100% - 90px);
    padding: 6px;
    gap: 4px;
  }
  
  .chat__message {
    padding: 4px 6px;
    font-size: 0.60rem;
  }

  .chat__time {
    font-size: 0.55rem;
  }
  
  .whatsapp__input-area {
    padding: 6px 10px;
  }
  
  .whatsapp__input {
    padding: 6px 10px;
    font-size: 0.7rem;
  }

  .phone__status-left img {
    height: 9px;
  }

  .phone__status-right img {
    height: 9px;
  }
  
  .whatsapp__send {
    width: 24px;
    height: 24px;
  }
  
  .visual__phone {
    width: 100px;
    height: 160px;
  }
  
  .benefit__card {
    padding: 2rem 1.5rem;
  }
  
  .button {
    padding: 0.875rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .hero__button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
} 

/* ===== MOBILE SMALL DEVICES ===== */
@media screen and (max-width: 450px) {
    .hero__button {
        font-size: 0.8rem;
        padding: 0.8rem 1.5rem;
    }

    .phone {
        width: min(180px, 35vw);
        height: min(360px, 69vw);
        padding: 3px;
        max-width: 180px;
        max-height: 360px;
        border-radius: 20px;
    }

    .phone::before {
        width: 35px;
        height: 10px;
        top: 6px;
        border-radius: 6px;
    }

    .phone__status-left img {
        height: 6px;
    }

    .hero__data {
        padding-left: 0;
    }

    .phone__status-right img {
        height: 6px;
    }

    .phone__status-bar {
        top: 6px;
        padding: 4px 6px;
        font-size: 5px;
        height: 8px;
        left: 4px;
        right: 4px;
    }

    .status__time {
        font-size: 8px;
    }

    .status__battery {
        width: 10px;
        height: 5px;
    }

    .status__wifi {
        width: 7px;
        height: 5px;
    }

    .signal__bar {
        width: 1.5px;
    }

    .signal__bar:nth-child(1) {
        height: 2px;
    }

    .signal__bar:nth-child(2) {
        height: 3px;
    }

    .signal__bar:nth-child(3) {
        height: 4px;
    }

    .signal__bar:nth-child(4) {
        height: 5px;
    }

    .phone__screen {
        border-radius: 15px;
    }

    .whatsapp__header {
        padding: 15px 6px 2px;
        gap: 6px;
    }

    .whatsapp__back {
        height: 8px;
    }

    .whatsapp__avatar {
        width: 15px;
        height: 15px;
        font-size: 0.45rem;
    }

    .whatsapp__contact-name {
        font-size: 0.55rem;
        font-weight: 500;
    }

    .whatsapp__contact-status {
        font-size: 0.4rem;
    }

    .whatsapp__menu {
        height: 8px;
    }

    .whatsapp__chat {
        height: calc(100% - 60px);
        padding: 6px;
        gap: 4px;
    }

    .chat__message {
        padding: 2px 3px;
        font-size: 0.46rem;
        line-height: 1.1;
        border-radius: 3px;
        max-width: 80%;
    }

    .hero {
        /* Mobile pequeno: altura total - altura do header */
        height: calc(100vh - var(--header-height));
        max-height: calc(100vh - var(--header-height));
        /* Suporte a viewport dinâmica para mobile pequeno */
        height: calc(100dvh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .chat__message--bot {
        border-radius: 4px 4px 4px 1px;
    }

    .chat__message--user {
        border-radius: 4px 4px 1px 4px;
    }

    .chat__message--bot::before {
        border: 2px solid transparent;
        border-right-color: #ffffff;
        left: -1px;
    }

    .chat__message--user::after {
        border: 2px solid transparent;
        border-left-color: #DCF8C7;
        right: -1px;
    }

    .chat__time {
        font-size: 0.4rem;
        margin-top: 1px;
    }

    .whatsapp__input-area {
        height: 25px;
        padding: 3px 6px;
        gap: 3px;
    }

    .whatsapp__input {
        border-radius: 6px;
        padding: 2px 6px;
        font-size: 0.47rem;
        width: 80%;
    }

    .whatsapp__send {
        width: 18px;
        height: 18px;
    }

    .hero__title {
        font-size: 1.75rem;
        line-height: 1.1;
        text-align: center;
    }

    .hero__description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .calculator__title {
        font-size: 1.25rem;
    }

    .fees__title {
        font-size: 1.25rem;
    }

    .calculator__input {
        font-size: 1.125rem;
        padding: 0.75rem 0.875rem 0.75rem 2.25rem;
    }

    .calculator__currency {
        font-size: 0.9375rem;
        left: 0.875rem;
    }

    .breakdown__label {
        font-size: 0.875rem;
    }

    .breakdown__value {
        font-size: 0.9375rem;
    }

    .breakdown__value--total {
        font-size: 1.125rem;
    }

    .breakdown__value--receive {
        font-size: 1rem;
    }

    .fee__icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ===== MOBILE EXTRA SMALL DEVICES =====
@media screen and (max-width: 375px) {
  .phone {
    width: min(150px, 38vw);
    height: min(300px, 76vw);
    padding: 2px;
    max-width: 150px;
    max-height: 300px;
    border-radius: 18px;
  }
  
  .phone::before {
    width: 40px;
    height: 10px;
    top: 6px;
    border-radius: 5px;
  }
  
  .phone__status-bar {
    top: 6px;
    padding: 2px 6px;
    font-size: 6px;
    height: 7px;
    left: 4px;
    right: 4px;
  }
  
  .status__time {
    font-size: 2px;
  }
  
  .status__battery {
    width: 10px;
    height: 5px;
  }
  
  .status__wifi {
    width: 7px;
    height: 5px;
  }
  
  .signal__bar {
    width: 1px;
  }
  
  .signal__bar:nth-child(1) { height: 1px; }
  .signal__bar:nth-child(2) { height: 2px; }
  .signal__bar:nth-child(3) { height: 3px; }
  .signal__bar:nth-child(4) { height: 4px; }
  
  .phone__screen {
    border-radius: 15px;
  }
  
  .whatsapp__header {
    padding: 15px 6px 2px;
    gap: 4px;
  }
  
  .whatsapp__back {
    height: 8px;
  }
  
  .whatsapp__avatar {
    width: 15px;
    height: 15px;
    font-size: 0.45rem;
  }
  
  .whatsapp__contact-name {
    font-size: 0.55rem;
    font-weight: 500;
  }
  
  .whatsapp__contact-status {
    font-size: 0.4rem;
  }
  
  .whatsapp__menu {
    height: 10px;
  }
  
  .whatsapp__chat {
    height: calc(100% - 60px);
    padding: 6px;
    gap: 4px;
  }
  
  .chat__message {
    padding: 3px 5px;
    font-size: 0.5rem;
    line-height: 1.1;
    border-radius: 5px;
    max-width: 75%;
  }
  
  .chat__message--bot {
    border-radius: 5px 5px 5px 1px;
  }
  
  .chat__message--user {
    border-radius: 5px 5px 1px 5px;
  }
  
  .chat__message--bot::before {
    border: 2px solid transparent;
    border-right-color: #ffffff;
    left: -1px;
  }
  
  .chat__message--user::after {
    border: 1px solid transparent;
    border-left-color: #DCF8C7;
    right: -1px;
  }
  
  .chat__time {
    font-size: 0.4rem;
    margin-top: 1px;
  }
  
  .whatsapp__input-area {
    padding: 3px 6px;
    gap: 3px;
  }
  
  .whatsapp__input {
    border-radius: 10px;
    padding: 3px 6px;
    font-size: 0.5rem;
  }
  
  .whatsapp__send {
    width: 15px;
    height: 15px;
  }
  
  .hero__title {
    font-size: 1.4rem;
    line-height: 1.1;
  }
  
  .hero__description {
    font-size: 0.85rem;
    line-height: 1.4;
  }
  
  .hero__container {
    gap: 1.5rem;
  }
} */

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero__illustration {
        animation: none;
    }
}

/* Focus styles for accessibility */
.button:focus,
.nav__link:focus,
.contact__input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow-color: rgba(0, 0, 0, 0.3);
        --border-color: #000000;
    }
}