/* ======== ESTILO GLOBAL ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Comic Sans MS', Arial, sans-serif;
}

body {
    background: #f6f9fc;
    color: #333;
    line-height: 1.6;
}

/* ======== HEADER ======== */
header {
    background: #4cafef;
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 3px 5px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 5px;
}

nav {
    margin-top: 15px;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* ======== SECCIÓN HERO ======== */
.hero {
    background: linear-gradient(135deg, #ffcc70, #ff8177);
    color: white;
    text-align: center;
    padding: 40px 20px;
}

.hero h2 {
    font-size: 2rem;
}

.hero p {
    margin: 10px 0 20px;
    font-size: 1.2rem;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #4cafef;
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #3b8cd9;
}

/* ======== FEATURES ======== */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px;
    background: white;
}

.features div {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    margin: 15px;
    padding: 20px;
    background: #f0f8ff;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 3px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.features div:hover {
    transform: scale(1.05);
}

.features h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* ======== FOOTER ======== */
footer {
    text-align: center;
    padding: 15px;
    background: #4cafef;
    color: white;
    margin-top: 20px;
}