/* landing.css - Estilos para la parte pública */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

/* El botón del Club (Parte Superior Derecha) */
.club-login-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    text-decoration: none;
    color: #27ae60;
    font-weight: bold;
    border: 2px solid #27ae60;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s ease;
    background: white;
    z-index: 1000;
    font-size: 0.9rem;
}

.club-login-btn:hover {
    background: #27ae60;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(39, 174, 96, 0.3);
}

/* --- ESTILOS INDEX (HOME) --- */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, #eafaf1 0%, #ffffff 100%);
    padding: 20px;
}

.hero-title {
    font-size: 4rem;
    margin: 0;
    color: #2c3e50;
    animation: fadeInDown 1s;
}

.hero-slogan {
    font-size: 1.5rem;
    color: #7f8c8d;
    margin-bottom: 40px;
    animation: fadeIn Up 1s;
}

.btn-group {
    display: flex;
    gap: 20px;
    animation: fadeInUp 1.2s;
}

.btn-landing {
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-know {
    background-color: #2c3e50;
    color: white;
}

.btn-contact {
    background-color: #27ae60;
    color: white;
}

.btn-landing:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- ESTILOS CONÓCENOS --- */
.page-container {
    max-width: 1000px;
    margin: 80px auto; /* Margen arriba para no chocar con el botón login */
    padding: 20px;
}

.section-title {
    text-align: center;
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.info-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    border-top: 4px solid #27ae60;
    transition: transform 0.3s;
}

.info-card:hover { transform: translateY(-5px); }
.info-card h3 { color: #27ae60; margin-top: 0; }
.icon-big { font-size: 3rem; display: block; margin-bottom: 10px; }

/* --- ESTILOS CONTACTO --- */
.contact-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group { margin-bottom: 20px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: #555; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: #27ae60;
    outline: none;
}

.btn-send {
    width: 100%;
    padding: 15px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    font-weight: bold;
}
.btn-send:hover { background: #219150; }

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #7f8c8d;
    text-decoration: none;
}

/* Animaciones */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }