/* Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Fredoka", sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Encabezado */
header {
    background: #fff;
    padding: 15px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 a {
    font-size: 1.8rem;
    color: #551A8B;
    font-weight: 600;
}

header ul {
    display: flex;
    gap: 15px;
}

header ul li a {
    padding: 8px 12px;
    color: #555;
    font-size: 1rem;
}

header ul li a:hover {
    color: #ff6969;
}

/* Banner */
#banner {
    text-align: center;
    background: #fff4f4;
    padding: 40px 20px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#banner h2 {
    font-size: 2.5rem;
    color: #ff6969;
    margin-bottom: 20px;
    font-weight: 600;
}

#banner p {
    color: #555;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

#banner video {
    width: 100%;
    max-width: 700px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Información */
#info {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
    margin: 0 10px 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

#info h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.info-card {
    max-width: 250px;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.info-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}

.info-card h3 {
    font-size: 1.2rem;
    color: #ff6969;
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    #banner h2 {
        font-size: 2rem;
    }

    .info-card {
        max-width: 100%;
    }
}
