/* Reset e Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8ff 50%, #fff5ee 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(168, 213, 186, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 212, 240, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(242, 194, 212, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Variáveis CSS - Paleta Aquarela Pastel */
:root {
    --primary-green: #a8d5ba;
    --soft-blue: #b8d4f0;
    --warm-cream: #f8f6f0;
    --gentle-pink: #f2c2d4;
    --forest-green: #7ba098;
    --sunset-orange: #f5c99b;
    --cloud-white: rgba(255, 255, 255, 0.95);
    --lavender: #d4c5f9;
    --peach: #f5c99b;
    --mint: #c8e6d0;
    --text-dark: #5a6b7d;
    --text-light: #8b9bb0;
    --bg-light: #fefefe;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(127, 176, 105, 0.2);
    transition: var(--transition);
    padding: 0.75rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 300;
    margin: 0;
    margin-top: -2px;
}

/* Logo image replacing title + subtitle: keep similar height */
.logo-image {
    height: 5rem;
    width: auto;
    display: block;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-green);
    background-color: rgba(168, 213, 186, 0.1);
}

.nav-link.active {
    color: var(--primary-green);
    background-color: rgba(168, 213, 186, 0.15);
}

/* Botão Acessar no Menu */
.btn-access {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-access-fixed {
    margin-left: 1rem;
}

.btn-access .btn-text {
    position: relative;
    z-index: 2;
}

.btn-access .btn-magic {
    font-size: 1rem;
    position: relative;
    z-index: 2;
    animation: sparkle 2s ease-in-out infinite;
}

.btn-access:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.4);
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

/* Responsive breakpoints */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.875rem;
    }
}

/* Navigation Toggle (Hamburger) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    padding: 0;
    background: none;
    border: none;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Classe para leitores de tela */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at top left, rgba(168, 213, 186, 0.3) 0%, rgba(184, 212, 240, 0.2) 30%, rgba(242, 194, 212, 0.25) 60%, rgba(245, 230, 168, 0.2) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    align-items: flex-start;
}

.feature-item {
    min-width: 230px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(168, 213, 186, 0.4), 0 6px 20px rgba(184, 212, 240, 0.3), 0 0 0 2px rgba(242, 194, 212, 0.4);
    background: linear-gradient(135deg, var(--mint), var(--lavender), var(--peach));
}

.feature-icon {
    font-size: 1.3rem;
}

.highlight {
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

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

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 2.3rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--soft-blue), var(--gentle-pink));
    color: var(--text-dark);
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.3), 0 4px 15px rgba(184, 212, 240, 0.2);
    backdrop-filter: blur(10px);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(127, 176, 105, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
}



/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 500px;
}



@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}





/* About Section */
.about {
    padding: 8rem 0;
    background: radial-gradient(ellipse at bottom right, rgba(212, 197, 249, 0.2) 0%, rgba(200, 230, 208, 0.25) 40%, rgba(245, 201, 155, 0.2) 80%, rgba(248, 246, 240, 0.3) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    justify-items: center;
    align-items: stretch;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(168, 213, 186, 0.15), 0 5px 15px rgba(184, 212, 240, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(168, 213, 186, 0.2), 0 8px 25px rgba(184, 212, 240, 0.15), 0 0 0 1px rgba(242, 194, 212, 0.3);
    background: rgba(255, 255, 255, 0.85);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.feature-card h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.feature-card p {
    color: #4a5568;
    line-height: 1.6;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.about-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 2rem;
}

.about-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
    animation: gentleFloat 8s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        filter: hue-rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(0.5deg) scale(1.01); 
        filter: hue-rotate(2deg);
    }
    50% { 
        transform: translateY(-15px) rotate(1deg) scale(1.02); 
        filter: hue-rotate(5deg);
    }
    75% { 
        transform: translateY(-8px) rotate(0.5deg) scale(1.01); 
        filter: hue-rotate(2deg);
    }
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-features {
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-light);
    margin: 0;
}



/* Security Section */
.security {
    padding: 8rem 0;
    background: radial-gradient(ellipse at center, rgba(168, 213, 186, 0.25) 0%, rgba(200, 230, 208, 0.2) 50%, rgba(184, 212, 240, 0.15) 100%);
}

.security-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.6);
    padding: 1.8rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(168, 213, 186, 0.3);
    box-shadow: 0 8px 25px rgba(168, 213, 186, 0.15), 0 4px 15px rgba(200, 230, 208, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-item:hover {
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 12px 35px rgba(168, 213, 186, 0.25), 0 6px 20px rgba(200, 230, 208, 0.15), 0 0 0 1px rgba(184, 212, 240, 0.4);
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(184, 212, 240, 0.5);
}

.security-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.security-info h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.security-info p {
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

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

.security-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    animation: gentleFloat 6s ease-in-out infinite;
}

/* Demo Section */
.demo {
    padding: 8rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5ee 100%);
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.demo-preview {
    display: flex;
    justify-content: center;
}

.demo-screen {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 400px;
    width: 100%;
}

.demo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

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

.progress-bar {
    width: 150px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(45deg, #ff6b9d, #c44569);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.demo-score {
    font-weight: 600;
    color: #2d3748;
}

.demo-question h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.demo-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.demo-option {
    padding: 0.75rem 1rem;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-option:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.demo-option.correct {
    background: #c6f6d5;
    border-color: #68d391;
    color: #22543d;
}

.demo-ai-tip {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fff5f5;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b9d;
}

.tip-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.demo-ai-tip p {
    margin: 0;
    color: #2d3748;
    font-size: 0.9rem;
    line-height: 1.5;
}

.demo-features h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.demo-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.demo-list li {
    padding: 0.75rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
    line-height: 1.6;
}

.demo-list li:last-child {
    border-bottom: none;
}

/* Centralizar botão Solicitar Demonstração */
.demo-features {
    text-align: center;
}

.demo-features .btn {
    margin: 2rem auto 0;
    display: inline-block;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}



.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-green);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #f0f8ff 0%, #fff5ee 100%);
    color: var(--text-dark);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr repeat(5, minmax(180px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-green);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    padding: 0.5rem;
    background: rgba(127, 176, 105, 0.2);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-green);
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}



/* Magic Particles Animation */
.magic-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.magic-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #7dd3fc;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1000;
    animation: floatUp linear forwards;
    box-shadow: 0 0 3px rgba(125, 211, 252, 0.4);
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Demo Quiz Styles */
.demo-option {
    background: #ffffff;
    border: 2px solid #e8f4fd;
    border-radius: 12px;
    padding: 12px 20px;
    margin: 8px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
    color: #4a5568;
    width: 100%;
    text-align: left;
}

.demo-option:hover {
    border-color: #ff6b9d;
    background: #fef7f7;
    transform: translateX(5px);
}

.demo-option.correct {
    background: #f6ffed;
    border-color: #52c41a;
    color: #389e0d;
}

.demo-option.incorrect {
    background: #fff2f0;
    border-color: #ff4d4f;
    color: #cf1322;
}

.demo-option:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

.demo-feedback {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-weight: 600;
    animation: feedbackPop 0.3s ease-out;
}

.demo-feedback.success {
    border-left: 4px solid #52c41a;
    color: #389e0d;
}

.demo-feedback.error {
    border-left: 4px solid #ff4d4f;
    color: #cf1322;
}

@keyframes feedbackPop {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.demo-complete {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #fef7f7 0%, #e8f4fd 100%);
    border-radius: 20px;
    margin: 20px 0;
}

.demo-complete h3 {
    color: #ff6b9d;
    font-size: 24px;
    margin-bottom: 20px;
}

.demo-final-score {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
}

.score-number {
    font-size: 36px;
    font-weight: bold;
    color: #4a5568;
}

.score-percentage {
    font-size: 24px;
    color: #52c41a;
    font-weight: 600;
}

.demo-message {
    color: #4a5568;
    font-size: 16px;
    margin: 20px 0;
    line-height: 1.6;
}

.demo-restart {
    margin: 10px;
}

/* Enhanced Animations */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Enhanced Effects */
.btn, .btn-large {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover, .btn-large:hover {
    transform: translateY(-2px);
}

.feature-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.security-item {
    transition: all 0.3s ease;
}



@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
/* Media query específica para 792x780px */
@media (max-width: 792px) and (max-height: 780px) {
    .hero-buttons {
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 600px;
        margin: 0 auto 3rem auto;
    }
    
    .hero-buttons .btn {
        flex: 0 0 auto;
        min-width: 180px;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-illustration {
        order: -1;
    }
    
    .hero-image {
        max-width: 400px;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-illustration {
        order: -1;
    }
    
    .about-image {
        max-width: 350px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }
    
    .security-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .security-illustration {
        order: -1;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .demo-preview {
        order: -1;
    }
    

}

/* Ajuste para header fixo entre 1180px e abaixo: evita sobreposição no título */
@media (max-width: 1180px) {
    .hero {
        padding-top: 7rem; /* compensa altura do header com logo 5rem + padding */
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        background: white;
        flex-direction: column;
        padding: 1rem;
        border-radius: 8px 0 0 8px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        margin-bottom: 0.5rem;
        border-radius: 6px;
        text-align: left;
    }
    
    .nav-link:last-child {
        margin-bottom: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Botão Acessar sempre visível no header */
    .btn-access-fixed {
        display: flex;
        margin-left: 0.5rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.9rem;
    }
}

@keyframes slideInMobile {
    0% {
        transform: translateY(-20px) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Media query específica para resolução 587x552 */
@media (max-width: 600px) and (max-height: 600px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
        font-weight: 600;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    .nav-toggle {
        padding: 0.25rem;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2.5px;
        margin: 2.5px 0;
    }
    
    .hero {
        padding: 8rem 0 2rem 0;
        min-height: 80vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-image {
        max-width: 300px;
    }
    
    .hero-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        padding: 0.5rem 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    
    

    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .about-image {
        max-width: 280px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .security-features {
        gap: 1.5rem;
    }
    
    .security-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .demo-screen {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .demo-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .progress-bar {
        width: 100%;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    

}

/* Media query específica para iPhone SE (375x667) */
@media (max-width: 375px) {
    .hero {
        padding: 3rem 0 1.5rem 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .hero-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-feature {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .header {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
    }
    
    .btn-access-fixed {
        padding: 0.4rem 0.5rem;
        font-size: 0.7rem;
        margin-left: 0.3rem;
        border-radius: 16px;
        height: auto;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        min-width: auto;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.7rem;
        line-height: 1;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.7rem;
        line-height: 1;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    

    

    
    .about-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .about-content {
        order: 2;
    }
    
    .about-illustration {
        order: 1;
    }
    
    .about-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .demo-container {
        padding: 0 1rem;
        text-align: center;
    }
    
    .demo-features {
        padding: 0 1rem;
    }
    
    .demo-features .btn {
        width: 100%;
        max-width: 280px;
        margin: 1rem auto 0;
    }
    
    .footer {
        padding: 2rem 0 1rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1rem;
    }
}

/* Media query para iPhone XR (414x896) */
@media (max-width: 414px) {
    .header {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
        margin-top: -1px;
    }
    
    .btn-access-fixed {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        margin-left: 0.4rem;
        border-radius: 18px;
        width: fit-content;
        min-width: auto;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.7rem;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.75rem;
    }
}

/* Media query para iPhone 12 Pro (390x844) */
@media (max-width: 390px) {
    .header {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.15rem;
        font-weight: 600;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
        margin-top: -1px;
    }
    
    .btn-access-fixed {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        margin-left: 0.4rem;
        border-radius: 18px;
        width: fit-content;
        min-width: auto;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.7rem;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.75rem;
    }
    
    /* Hero Section - iPhone 14 */
    .hero {
        padding: 4rem 0 2rem 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .hero-image {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
    }
    
    .feature-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        min-width: auto;
    }
    
    .hero-buttons {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Media query para Pixel 7 (412x732) */
@media (max-width: 412px) {
    .header {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
        margin-top: -1px;
    }
    
    .btn-access-fixed {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
        margin-left: 0.4rem;
        border-radius: 18px;
        width: fit-content;
        min-width: auto;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.7rem;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.75rem;
    }
}

/* Media query para Samsung Galaxy S8+ (360x740) */
@media (max-width: 360px) {
    .hero {
        padding: 3rem 0 1.5rem 0;
        min-height: auto;
    }
    
    .hero-container {
        padding: 0 1rem;
        gap: 1.5rem;
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.7rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 1.2rem;
    }
    
    .hero-image {
        max-width: 260px;
        margin: 0 auto;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        justify-content: center;
    }
    
    .hero-feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero-buttons {
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 260px;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .header {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
    }
    
    .logo-subtitle {
        font-size: 0.55rem;
    }
    
    .btn-access-fixed {
        padding: 0.4rem 0.65rem;
        font-size: 0.7rem;
        margin-left: 0.3rem;
        border-radius: 16px;
        height: auto;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: 80px;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.7rem;
        line-height: 1;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .section {
        padding: 2rem 0;
    }
    

    

    
    .about-container {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        text-align: center;
    }
    
    .about-image {
        max-width: 220px;
        margin: 0 auto;
    }
}

/* Media query para Samsung Galaxy S20 Ultra (412x915) */
@media (max-width: 412px) {
    .header {
        padding: 0.4rem 0;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo h1 {
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .logo-subtitle {
        font-size: 0.6rem;
        margin-top: -1px;
    }
    
    .btn-access-fixed {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
        margin-left: 0.4rem;
        border-radius: 18px;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.7rem;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.75rem;
    }
}

/* Media query para iPad Mini (768x1024) */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
    .header {
        padding: 0.8rem 0;
    }
    
    .nav-container {
        padding: 0 2rem;
        justify-content: space-between;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-access-fixed {
        padding: 0.3rem 0.5rem;
        font-size: 0.8rem;
        margin-left: 0.3rem;
        border-radius: 16px;
        height: auto;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        min-width: auto;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .btn {
        min-width: 200px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .demo-container {
        transform: scale(1.4);
        transform-origin: center;
        margin: 3rem 0;
    }
}

/* Media query para iPad Air (820x1180) */
@media (min-width: 820px) and (max-width: 1180px) and (orientation: portrait) {
    .btn-access-fixed {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
        margin-left: 0.6rem;
        border-radius: 18px;
        height: auto;
        line-height: 1.2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: fit-content;
        min-width: auto;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    
    .btn {
        min-width: 220px;
        padding: 1.1rem 2.2rem;
        font-size: 1.1rem;
    }
    
    .demo-container {
        transform: scale(1.5);
        transform-origin: center;
        margin: 3.5rem 0;
    }
}

/* Media query para iPad Pro (1024x1366) */
@media (min-width: 1024px) and (max-width: 1366px) and (orientation: portrait) {
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
    }
    
    .btn {
        min-width: 250px;
        padding: 1.2rem 2.5rem;
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.8rem;
    }
    
    .section-header p {
        font-size: 1.3rem;
    }
    
    .demo-container {
        transform: scale(1.6);
        transform-origin: center;
        margin: 4rem 0;
    }
}

/* Media query para Surface Pro 7 (1280x720) */
@media (min-width: 1280px) and (max-width: 1920px) and (max-height: 720px) {
    .hero-title {
        font-size: 3.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
    }
    
    .btn {
        min-width: 240px;
        padding: 1.1rem 2.3rem;
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 3.2rem;
    }
    
    .section-header p {
        font-size: 1.5rem;
    }
    
    .demo-container {
        transform: scale(1.5);
        transform-origin: center;
        margin: 3.5rem 0;
    }
}

/* Media query para 425x780px - consistência com 375x780 */
@media (max-width: 425px) and (max-height: 780px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
        margin-top: -1px;
    }
    
    .btn-access-fixed {
        padding: 0.35rem 0.5rem;
        font-size: 0.75rem;
        margin-left: 0.5rem;
        border-radius: 20px;
        width: fit-content;
        min-width: auto;
        max-width: none;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.75rem;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.8rem;
    }
    
    .nav-toggle {
        padding: 0.2rem;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
}

@media (max-width: 390px) {
    .header {
        padding: 0.5rem 0;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .logo h1 {
        font-size: 1.3rem;
        font-weight: 600;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
        margin-top: -1px;
    }
    
    .btn-access-fixed {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
        margin-left: 0.5rem;
        border-radius: 20px;
    }
    
    .btn-access-fixed .btn-text {
        font-size: 0.75rem;
    }
    
    .btn-access-fixed .btn-magic {
        font-size: 0.8rem;
    }
    
    .nav-toggle {
        padding: 0.2rem;
    }
    
    .nav-toggle span {
        width: 20px;
        height: 2px;
        margin: 2px 0;
    }
    
    /* Centralizar botão Solicitar Demonstração para 375px */
    .demo-features {
        text-align: center;
        padding: 0 1rem;
    }
    
    .demo-features .btn {
        margin: 1.5rem auto 0;
        width: auto;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 300px;
    }
    

    
    .about-image {
        max-width: 280px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}





/* Efeitos de hover suaves */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::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: left 0.5s;
}

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

/* Modal das Lojas de Aplicativos */
.app-store-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease-out;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 0;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-green), var(--forest-green));
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body p {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.store-buttons {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 20px;
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: wrap;
    position: relative;
}

.store-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    flex: 1;
    max-width: 150px;
}

.store-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    min-width: 120px;
    cursor: pointer;
}

.store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
    box-shadow: none;
}

.android-btn:hover {
    border-color: transparent;
    background: none;
}

.ios-btn:hover {
    border-color: transparent;
    background: none;
}

.store-btn img {
    width: 120px;
    height: auto;
    margin-bottom: 0;
    border-radius: 8px;
    cursor: pointer;
}

.qr-code {
    width: 100px;
    height: 100px;
    margin: 10px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.qr-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}

.store-btn span {
    display: none;
}

/* Estilos para QR Code */
.qr-code-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeIn 0.3s ease-in-out;
}

.qr-code-content {
    text-align: center;
    color: white;
}

.qr-code-content h4 {
    margin: 0 0 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

.qr-code-image {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    background: white;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.qr-code-content p {
    margin: 15px 0 0 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsividade para o modal das lojas */
@media (max-width: 600px) {
    .store-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .store-btn-container {
        max-width: 200px;
        width: 100%;
    }
    
    .store-btn {
        min-width: 150px;
    }
    
    .store-btn img {
        width: 100px;
    }
    
    .qr-code-image {
        width: 150px;
        height: 150px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 480px) {
    .store-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        width: 100%;
        max-width: 200px;
    }
}