/* Estilos para el Sistema de Soporte */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Header con logo */
.support-header {
    background-color: #00a983;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 40px;
}

.support-logo {
    max-height: 60px;
    width: auto;
}

/* Contenedor principal */
.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Título principal */
.support-title {
    font-weight: bolder;
    color: #ff8c40;
    line-height: 40px;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
}

/* Contenedor de cards */
.cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Estilo de las cards */
.support-card {
    background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
    border: 2px solid #00a983;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.support-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 64, 0.1), transparent);
    transition: left 0.5s;
}

.support-card:hover::before {
    left: 100%;
}

.support-card:hover {
    transform: translateY(-5px);
    border-color: #ff8c40;
    box-shadow: 0 10px 30px rgba(255, 140, 64, 0.3);
}

/* Título de la card */
.card-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff8c40;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* Descripción de la card */
.card-description {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Icono de la card */
.card-icon {
    font-size: 3rem;
    color: #00a983;
    margin-bottom: 20px;
    display: block;
}

/* Botón de la card */
.card-button {
    background: linear-gradient(45deg, #00a983, #02775d);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.card-button:hover {
    background: linear-gradient(45deg, #ff8c40, #e67e22);
    transform: scale(1.05);
    color: white;
    text-decoration: none;
}

/* Responsive */
@media (max-width: 768px) {
    .support-title {
        font-size: 1.5rem;
        line-height: 30px;
    }
    
    .cards-container {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .support-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-icon {
        font-size: 2.5rem;
    }
}

/* Para pantallas medianas */
@media (max-width: 992px) and (min-width: 769px) {
    .cards-container {
        max-width: 100%;
        padding: 0 20px;
    }
}

/* Animaciones adicionales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-card {
    animation: fadeInUp 0.6s ease-out;
}

.support-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Efecto de brillo en hover */
.support-card:hover .card-icon {
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}
