/* Estilos específicos para a página de download */
/* Os estilos base já são importados via style.css no HTML */

/* Estilos específicos para a página de download */
.download-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.download-subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.download-cta {
    color: #fff;
    background: #000;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 24px;
    border-radius: 25px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.download-cta:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.app-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.app-links a {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
}

.app-links a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.app-links img {
    height: 60px;
    width: auto;
    display: block;
}

.features-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.features-section h3 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-item h5 {
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: #7f8c8d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .download-title {
        font-size: 2rem;
    }

    .download-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .download-cta {
        font-size: 1.2rem;
        padding: 10px 20px;
        border-radius: 20px;
    }

    .app-links {
        flex-direction: column;
        gap: 15px;
    }

    .app-links img {
        height: 50px;
        width: auto;
    }

    .features-section {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }

    .feature-item {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .download-title {
        font-size: 1.8rem;
    }

    .download-cta {
        font-size: 1rem;
        padding: 8px 16px;
        border-radius: 18px;
    }

    .app-links img {
        height: 45px;
        width: auto;
    }
}

/* Animação para destacar o link do dispositivo detectado */
.app-links a.highlighted {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Estilo para notificação de redirecionamento */
.redirect-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #27ae60;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    max-width: 350px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.redirect-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.redirect-notification.info {
    background: #3498db;
}

.redirect-notification.warning {
    background: #f39c12;
}

.redirect-notification.error {
    background: #e74c3c;
}

.redirect-notification .close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    float: right;
    margin-left: 10px;
    line-height: 1;
    padding: 0;
}

.redirect-notification .close-btn:hover {
    opacity: 0.7;
}

/* Container principal */
.container {
    max-width: 1200px;
}

/* Ajustes para o header */
.page-header {
    background: rgba(0,0,0,0.9);
}

/* Estilos para links de navegação ativos */
.rd-nav-item.active .rd-nav-link {
    color: #27ae60 !important;
}

.rd-nav-item.active .rd-nav-link::before {
    background-color: #27ae60 !important;
    width: 100% !important;
    bottom: -8px !important;
    opacity: 1 !important;
}
