/* Estilos para a página de download do app de babás */

.app-download-container {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section .lead {
    font-size: 1.3rem;
    opacity: 0.95;
}

.app-logo {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    animation: fadeInDown 0.8s ease-out;
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.1) !important;
}

.feature-card h5 {
    color: #333;
}

.feature-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* QR Section */
.qr-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.qr-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e0e0e0;
}

.qr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

.qr-placeholder {
    background: white;
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
}

.qr-placeholder svg {
    max-width: 100%;
    height: auto;
}

.qr-card .card-title {
    color: #333;
    font-size: 1.25rem;
}

.qr-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.qr-card .btn {
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.qr-card .btn-success {
    background-color: #3DDC84;
    border-color: #3DDC84;
}

.qr-card .btn-success:hover {
    background-color: #2bb876;
    border-color: #2bb876;
    transform: scale(1.02);
}

.qr-card .btn-dark {
    background-color: #1a1a1a;
    border-color: #1a1a1a;
}

.qr-card .btn-dark:hover {
    background-color: #000;
    border-color: #000;
    transform: scale(1.02);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-section .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn {
    font-weight: 600;
    padding: 12px 30px;
    font-size: 1.05rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    transform: scale(1.05);
}

.cta-section .btn-light {
    background-color: white;
    color: #667EEA;
    border-color: white;
}

.cta-section .btn-light:hover {
    background-color: #f0f0f0;
    color: #667EEA;
    border-color: #f0f0f0;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section .lead {
        font-size: 1rem;
    }

    .qr-placeholder {
        margin: 20px auto;
    }

    #qr-android,
    #qr-ios {
        width: 200px !important;
        height: 200px !important;
    }
}
