/*
 Theme Name:   COPE System
 Theme URI:    https://cope.mx
 Description:  Tema personalizado para el sistema de gestión COPE.
 Author:       Ing. Abner Cházaro
 Template:     astra
 Version:      1.0.0
*/

/* --- Estilos de la Bienvenida COPE --- */

/* Contenedor principal para centrar contenido */
.cope-container {
    max_width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

/* Sección Hero (Portada) */
.cope-hero {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364); /* Degradado elegante */
    color: white;
    padding: 100px 0;
    margin-bottom: 40px;
}

.cope-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #ffffff;
}

.cope-hero .subtitle {
    font-size: 1.2rem;
    color: #a8d0e6;
    margin-bottom: 30px;
}

/* Botones */
.cope-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Estilo para el botón secundario (El de WhatsApp ya tiene su clase) */
.btn-secundario {
    padding: 12px 25px;
    border: 2px solid white;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.btn-secundario:hover {
    background: white;
    color: #203a43;
}