/* Limpiado y reescrito de style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #f4f7fb;
}

/* HEADER */
header {
    background: #27b443;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav {
    width: 95%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    display: flex;
    gap: 35px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.btn-header {
    background: white;
    color: #27b443;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    height: 650px;
    background: linear-gradient(90deg, #2d73e8, #6ba6ff);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 900px;
}

.hero h1 {
    font-size: 65px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 30px;
    margin-bottom: 25px;
}

.btn-primary {
    background: #005eff;
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
}

/* FORMULARIOS */
.page-form {
    min-height: calc(100vh - 90px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: linear-gradient(90deg, #2d73e8, #6ba6ff);
}

.form-card {
    background: white;
    width: 100%;
    max-width: 600px;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.form-card h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #27b443;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    font-size: 16px;
}

.form-card button {
    width: 100%;
    background: #27b443;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
}

/* HORARIOS */
.horarios {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.hora-card {
    border: 2px solid #27b443;
    border-radius: 12px;
    padding: 15px;
    text-a