* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #0b0f19;
    color: white;
    font-family: 'Segoe UI', sans-serif;
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.monitor { max-width: 1100px; width: 100%; text-align: center; }

.logo {margin-bottom: 50px; letter-spacing: 1px ; }
.logo span { color: #22d3ee; }

.logo img {
    width: 300px; /* Ajusta este valor a tu gusto */
    height: auto; /* Mantiene la proporción */
}

h1 { font-size: 2.8rem; margin-bottom: 10px; }
.purple { color: #818cf8; }
.cyan { color: #22d3ee; }

header p { color: #94a3b8; margin-bottom: 50px; font-size: 1.1rem; }


.btn-header-wa {
    display: inline-block;    /* Permite que el botón tenga dimensiones y márgenes */
    margin-top: 30px;         /* Espacio respecto al texto de arriba */
    margin-bottom: 60px;      /* ESTO separa el botón de las 3 tarjetas de abajo */
    
    padding: 15px 30px;
    background-color: #0a86ec; 
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(148, 2, 245, 0.4);
}

.btn-header-wa:hover {
    transform: scale(1.05);   /* Efecto de agrandado al pasar el mouse */
    background-color:#22d3ee;;
    box-shadow: 0 6px 20px rgba(128, 5, 228, 0.6);
    
}


.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: #111827;
    border: 2px solid #1e293b;
    border-radius: 24px;
    padding: 25px;
    text-align: left;
    transition: 0.3s ease;
}

.card:hover {
    border-color: #22d3ee;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.15);
}

.img-box {
    width: 100%;
    height: 200px;
    background: #000;
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid #334155;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Asegura que se renderice */
}

h2 { color: #22d3ee; margin-bottom: 12px; font-size: 1.3rem; }
.card p { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; }


.main-footer {
    background-color: #0b0f19;
    padding: 60px 10% 20px;
    border-top: 1px solid #1e293b;
    margin-top: 80px;
    text-align: center;
}

.footer-logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.footer-logo span { color: #22d3ee; }

.footer-slogan {
    color: #94a3b8;
    font-size: 1rem;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

.social-icon {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid #1e293b;
    border-radius: 50px;
}

.social-icon:hover {
    color: #22d3ee;
    border-color: #22d3ee;
    box-shadow: 0 0 15px rgba(34, 211, 238, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 20px;
    font-size: 0.8rem;
    color: #475569;
}

