/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --red: #a60505;
    --green: #1c7234;
    --yellow: #ffde00;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-medium: #e9ecef;
    --gray-dark: #6c757d;
    
    --gradient-primary: linear-gradient(135deg, var(--red) 0%, var(--green) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--green) 0%, var(--red) 100%);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --header-height: 80px;
}

/* ===== BASE STYLES ===== */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== UTILITY CLASSES ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.section-dark .gradient-text {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-download .gradient-text {
    background: var(--yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.section-light {
    background: var(--gray-light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

/* ===== HEADER ===== */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    transition: padding var(--transition-base);
}

header.scrolled nav {
    padding: 0.8rem 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-base);
    z-index: 1001;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 135px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    transition: color var(--transition-base);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--red);
}

.nav-links a:hover::after {
    width: 100%;
}

.cta-button {
    padding: 0.8rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--dark);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== BUTTONS ===== */
.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.btn-primary {
    background: var(--yellow);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 222, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--red);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-primary);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--yellow);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--white);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: var(--yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content .gradient-text {
    background: var(--yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--white);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    min-width: 120px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup-container {
    position: relative;
    animation: phoneFloat 3s ease-in-out infinite;
}

.phone-mockup-img {
    width: 450px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.3));
}

@keyframes phoneFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.9rem;
    font-weight: 600;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ===== SECTION STYLES ===== */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--white);
    color: var(--red);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(166, 5, 5, 0.1);
}

.section-dark .section-badge {
    background: var(--yellow);
    color: var(--dark);
    border-color: transparent;
}

.section-download .section-badge {
    background: var(--white);
    color: var(--red);
    border-color: transparent;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: inherit;
    font-weight: 800;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(166, 5, 5, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--gray-dark);
    line-height: 1.8;
}

/* ===== STEPS ===== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--yellow);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.step-line {
    display: none;
}

/* ===== PARCEIRO ===== */
.parceiro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.parceiro-image {
    width: 100%;
    height: 500px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.parceiro-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(166, 5, 5, 0.2), transparent);
}

.parceiro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.parceiro-image:hover img {
    transform: scale(1.05);
}

.parceiro-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
}

.parceiro-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.parceiro-benefits {
    margin-bottom: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.benefit-text {
    font-size: 1.1rem;
    color: var(--dark);
    font-weight: 700;
}

.benefit-subtext {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

/* ===== DOWNLOAD SECTION RENOVADA ===== */
.section-download {
    background: var(--gradient-primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.download-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.download-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.download-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--yellow);
    top: -250px;
    right: -200px;
    animation: float 10s ease-in-out infinite;
}

.download-shape-2 {
    width: 400px;
    height: 400px;
    background: var(--white);
    bottom: -150px;
    left: -100px;
    animation: float 8s ease-in-out infinite reverse;
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-header {
    text-align: center;
    margin-bottom: 4rem;
}

.download-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.download-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.download-platform {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
}

.download-platform:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.download-platform.coming-soon {
    opacity: 0.7;
}

.download-platform.coming-soon:hover {
    transform: translateY(-5px);
}

.platform-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.platform-icon svg {
    width: 48px;
    height: 48px;
    stroke: none;
    fill: var(--white);
}

.download-platform h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.platform-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    background: var(--yellow);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 10px 30px rgba(255, 222, 0, 0.3);
    width: 100%;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 222, 0, 0.5);
}

.btn-download svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
}

.coming-soon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px dashed rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.coming-soon-badge svg {
    width: 20px;
    height: 20px;
}

.platform-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-badge.available {
    background: var(--green);
    color: var(--white);
}

.download-platform.coming-soon .platform-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.download-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-weight: 600;
}

.download-feature svg {
    width: 24px;
    height: 24px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--dark);
    color: var(--white);
}

.footer-content {
    padding: 4rem 0 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand img {
    width: 120px;
    height: auto;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
    cursor: pointer;
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .parceiro-container {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .download-main {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .container {
        padding: 0 4%;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transition: right var(--transition-base);
        width: 280px;
        max-width: 80%;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .cta-button {
        display: none;
    }
    
    .logo img {
        width: 110px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: calc(var(--header-height) + 3rem) 0 3rem;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .phone-mockup-img {
        width: 320px;
    }
    
    .hero-stats {
        gap: 1.5rem;
        padding-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
    
    .parceiro-image {
        height: 400px;
    }
    
    .parceiro-content h2 {
        font-size: 1.6rem;
    }
    
    .parceiro-content p {
        font-size: 1rem;
    }
    
    .benefit-item {
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }
    
    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .benefit-text {
        font-size: 1rem;
    }
    
    .benefit-subtext {
        font-size: 0.85rem;
    }
    
    /* Download Section Mobile */
    .section-download {
        padding: 5rem 0;
    }
    
    .download-header {
        margin-bottom: 3rem;
    }
    
    .download-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .download-platform {
        padding: 2.5rem 1.5rem;
    }
    
    .platform-icon {
        width: 80px;
        height: 80px;
    }
    
    .platform-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .download-platform h3 {
        font-size: 1.8rem;
    }
    
    .platform-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .btn-download {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .coming-soon-badge {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        flex-wrap: wrap;
        text-align: center;
    }
    
    .platform-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .download-features {
        gap: 2rem;
        padding-top: 2rem;
    }
    
    .download-feature {
        font-size: 0.9rem;
    }
    
    .download-feature svg {
        width: 20px;
        height: 20px;
    }
    
    /* Footer Mobile */
    .footer-content {
        padding: 3rem 0 1.5rem;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column ul {
        align-items: center;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
        --header-height: 65px;
    }
    
    .container {
        padding: 0 5%;
    }
    
    .logo img {
        width: 95px;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .hero-section {
        padding: calc(var(--header-height) + 2rem) 0 2rem;
    }
    
    .hero-text h1 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
    
    .phone-mockup-img {
        width: 260px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        padding-top: 1rem;
    }
    
    .stat-item {
        text-align: center;
        min-width: auto;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        font-size: 0.85rem;
        padding: 0.4rem 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .features-grid {
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .feature-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .steps-container {
        gap: 1.5rem;
    }
    
    .step-number {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }
    
    .step-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .parceiro-container {
        gap: 2rem;
    }
    
    .parceiro-image {
        height: 320px;
    }
    
    .parceiro-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }
    
    .parceiro-content p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .parceiro-benefits {
        margin-bottom: 2rem;
        gap: 0.75rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 0.75rem;
    }
    
    .benefit-icon {
        margin: 0 auto;
    }
    
    /* Download Section Mobile Small */
    .section-download {
        padding: 4rem 0;
    }
    
    .download-header {
        margin-bottom: 2.5rem;
    }
    
    .download-main {
        gap: 1.5rem;
    }
    
    .download-platform {
        padding: 2rem 1.25rem;
    }
    
    .platform-icon {
        width: 75px;
        height: 75px;
        margin-bottom: 1.25rem;
    }
    
    .platform-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .download-platform h3 {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }
    
    .platform-description {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-download {
        padding: 0.9rem 1.75rem;
        font-size: 0.9rem;
        gap: 0.5rem;
    }
    
    .btn-download svg {
        width: 20px;
        height: 20px;
    }
    
    .coming-soon-badge {
        padding: 0.9rem 1.25rem;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .coming-soon-badge svg {
        width: 18px;
        height: 18px;
    }
    
    .platform-badge {
        top: 1rem;
        right: 1rem;
        font-size: 0.65rem;
        padding: 0.35rem 0.7rem;
    }
    
    .download-features {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
        align-items: center;
    }
    
    .download-feature {
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .download-feature svg {
        width: 18px;
        height: 18px;
    }
    
    /* Footer Mobile Small */
    .footer-content {
        padding: 2.5rem 0 1.25rem;
    }
    
    .footer-brand img {
        width: 100px;
    }
    
    .footer-links {
        gap: 1.75rem;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul {
        gap: 0.6rem;
    }
    
    .footer-column a {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding: 1.25rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 1.25rem;
        right: 1.25rem;
    }
    
    .back-to-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 360px) {
    :root {
        font-size: 13px;
    }
    
    .logo img {
        width: 85px;
    }
    
    .hero-text h1 {
        font-size: 1.7rem;
    }
    
    .phone-mockup-img {
        width: 220px;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .download-platform {
        padding: 1.75rem 1rem;
    }
    
    .platform-icon {
        width: 65px;
        height: 65px;
    }
    
    .platform-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .download-platform h3 {
        font-size: 1.4rem;
    }
    
    .btn-download {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .coming-soon-badge {
        padding: 0.8rem 1rem;
        font-size: 0.8rem;
    }
}

/* ===== ANIMATIONS ===== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ===== LANDSCAPE MOBILE FIX ===== */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: calc(var(--header-height) + 2rem) 0 2rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 2rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    header,
    .back-to-top,
    .scroll-indicator,
    .mobile-menu-toggle {
        display: none !important;
    }
    
    section {
        page-break-inside: avoid;
    }
}