Найден корректный robots.txt
Файл управления сканированием сайта роботами
?
Robots.txt указывает поисковым роботам, какие страницы сканировать, а какие — нет. Ошибки в файле могут случайно закрыть важные разделы от индексации.
Кол-во редиректов для файла robots.txt 3 слишком большое! Это может вызывать затруднение при индексации поисковыми роботами!
Проверяемая страница не запрещена в robots.txt.
Цепочка редиректов для файла robots.txt:
http://cdhuelva.com/robots.txt
301 MovedPermanently
https://cdhuelva.com/robots.txt
301 MovedPermanently
https://cdhuelva.com/?robots.txt
200 OK
Показать содержимое robots.txt
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inscripciones CDHuelva - Portal Oficial</title>
<!-- Favicon -->
<link rel="icon" type="image/png" href="CDHGestion/images/cdh-logo.png">
<!-- Fuentes Google -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@700;800;900&display=swap" rel="stylesheet">
<!-- Iconos FontAwesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Estilos base globales -->
<link rel="stylesheet" href="CDHGestion/css/style.css">
<style>
/* Estilos Light/White Theme (Estilo ACB / Primera FEB) */
:root {
--landing-bg: #FFFFFF;
--landing-bg-alt: #F8FAFC;
--landing-primary: #1E3A8A; /* Azul CDH */
--landing-accent: #F37021; /* Naranja CDH */
--landing-accent-hover: #D95D1A;
--landing-text: #0F172A;
--landing-text-muted: #64748B;
}
body {
margin: 0;
padding: 0;
background-color: var(--landing-bg);
color: var(--landing-text);
min-height: 100vh;
display: flex;
flex-direction: column;
overflow-x: hidden;
position: relative;
font-family: 'Inter', sans-serif;
background-image: radial-gradient(#E2E8F0 1px, transparent 1px);
background-size: 40px 40px;
}
/* Navbar Sencillo */
header {
position: relative;
z-index: 10;
padding: 25px 50px;
display: flex;
justify-content: space-between;
align-items: center;
background: #FFFFFF;
border-bottom: 1px solid #F1F5F9;
}
.logo-container {
display: flex;
align-items: center;
gap: 15px;
animation: fadeDown 0.8s ease-out forwards;
}
.logo-container img {
height: 55px;
width: auto;
}
.logo-text {
font-family: 'Outfit', sans-serif;
font-weight: 900;
font-size: 24px;
letter-spacing: 0.5px;
text-transform: uppercase;
color: var(--landing-primary);
}
/* Hero Section */
.hero-section {
position: relative;
z-index: 10;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 60px 20px 40px 20px;
text-align: center;
}
.badge {
background: #FFF7ED;
border: 1px solid #FFEDD5;
color: var(--landing-accent);
padding: 8px 16px;
border-radius: 50px;
font-size: 13px;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 25px;
animation: fadeUp 0.8s ease-out forwards;
animation-delay: 0.1s;
opacity: 0;
}
h1 {
font-family: 'Outfit', sans-serif;
font-weight: 900;
font-size: 64px;
line-height: 1.1;
margin: 0 0 20px 0;
max-width: 800px;
color: var(--landing-primary);
text-transform: uppercase;
letter-spacing: -1px;
animation: fadeUp 0.8s ease-out forwards;
animation-delay: 0.2s;
opacity: 0;
}
p.subtitle {
font-size: 18px;
color: var(--landing-text-muted);
max-width: 600px;
line-height: 1.6;
margin: 0 0 45px 0;
animation: fadeUp 0.8s ease-out forwards;
animation-delay: 0.3s;
opacity: 0;
}
/* Botones de Acción */
.action-buttons {
display: flex;
gap: 20px;
animation: fadeUp 0.8s ease-out forwards;
animation-delay: 0.4s;
opacity: 0;
flex-wrap: wrap;
justify-content: center;
}
.btn-xl {
padding: 18px 40px;
border-radius: 12px;
font-size: 18px;
font-weight: 700;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 12px;
transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
text-transform: uppercase;
letter-spacing: 0.5px;
}
.btn-primary-glow {
background: var(--landing-accent);
color: #FFFFFF;
box-shadow: 0 10px 25px -8px rgba(243, 112, 33, 0.6);
border: 2px solid var(--landing-accent);
}
.btn-primary-glow:hover {
background: var(--landing-accent-hover);
border-color: var(--landing-accent-hover);
transform: translateY(-3px);
box-shadow: 0 15px 30px -5px rgba(243, 112, 33, 0.7);
}
.btn-outline {
background: #FFFFFF;
border: 2px solid #E2E8F0;
color: var(--landing-primary);
}
.btn-outline:hover {
border-color: var(--landing-primary);
background: #F8FAFC;
transform: translateY(-3px);
box-shadow: 0 15px 30px -10px rgba(30, 58, 138, 0.15);
}
/* Grid de Pasos Informativos (Solid Cards) */
.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
width: 100%;
max-width: 1050px;
margin-top: 80px;
animation: fadeUp 0.8s ease-out forwards;
animation-delay: 0.5s;
opacity: 0;
position: relative;
z-index: 10;
}
.step-card {
background: #FFFFFF;
border: 1px solid #F1F5F9;
border-radius: 16px;
padding: 35px 30px;
text-align: left;
transition: all 0.3s ease;
box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
position: relative;
overflow: hidden;
}
.step-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: #E2E8F0;
transition: background 0.3s ease;
}
.step-card:hover {
transform: translateY(-5px);
box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
border-color: #E2E8F0;
}
.step-card:hover::before {
background: var(--landing-accent);
}
.step-icon {
width: 60px;
height: 60px;
border-radius: 12px;
background: #FFF7ED;
color: var(--landing-accent);
display: flex;
align-items: center;
justify-content: center;
font-size: 26px;
margin-bottom: 25px;
}
.step-card h3 {
font-size: 20px;
margin: 0 0 12px 0;
color: var(--landing-text);
font-family: 'Outfit', sans-serif;
font-weight: 800;
}
.step-card p {
font-size: 15px;
color: var(--landing-text-muted);
margin: 0;
line-height: 1.6;
}
/* Footer */
footer {
position: relative;
z-index: 10;
text-align: center;
padding: 40px 30px;
color: #94A3B8;
font-size: 13px;
background: #F8FAFC;
border-top: 1px solid #F1F5F9;
margin-top: 60px;
}
/* Animaciones */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(30px); }
to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
from { opacity: 0; transform: translateY(-20px); }
to { opacity: 1; transform: translateY(0); }
}
/* Responsive */
@media (max-width: 768px) {
h1 { font-size: 42px; }
.action-buttons { flex-direction: column; width: 100%; max-width: 320px; margin: 0 auto; }
.btn-xl { width: 100%; justify-content: center; }
header { padding: 20px; justify-content: center; }
.logo-text { display: none; }
.steps-grid { margin-top: 50px; }
}
</style>
</head>
<body>
<main class="hero-section">
<img src="CDHGestion/images/cdh-logo.png" alt="Escudo CDHuelva" style="height: 140px; width: auto; margin-bottom: 25px; animation: fadeDown 0.8s ease-out forwards;">
<div class="badge">Temporada 2026/2027</div>
<h1>Portal Oficial de Inscripciones</h1>
<p class="subtitle">
Únete a nuestra cantera rellenando el formulario de alta o accede a tu área privada para gestionar las cuotas, pagos y documentación deportiva de tus hijos/as.
</p>
<div class="action-buttons">
<a href="CDHGestion/tutor/inscripcion.php" class="btn-xl btn-primary-glow">
<i class="fa-solid fa-file-signature"></i>
Inscribirse
</a>
<a href="CDHGestion/acceso.php" class="btn-xl btn-outline">
<i class="fa-solid fa-lock"></i>
Área Familias
</a>
</div>
<div class="steps-grid">
<div class="step-card">
<div class="step-icon">
<i class="fa-solid fa-clipboard-list"></i>
</div>
<h3>1. Rellena el Formulario</h3>
<p>Completa los datos del tutor y de los jugadores que deseas inscribir para esta temporada de forma rápida y sencilla.</p>
</div>
<div class="step-card">
<div class="step-icon" style="color: #3B82F6; background: #EFF6FF;">
<i class="fa-solid fa-credit-card"></i>
</div>
<h3>2. Confirma la Plaza</h3>
<p>Realiza el abono de la matrícula o envía tu solicitud al buzón de administración del club.</p>
</div>
<div class="step-card">
<div class="step-icon" style="color: #10B981; background: #ECFDF5;">
<i class="fa-solid fa-users"></i>
</div>
<h3>3. Entra en tu Área</h3>
<p>Inicia sesión con tu DNI para ver el estado de los recibos, abonar cuotas y descargar documentos de forma transparente.</p>
</div>
</div>
</main>
<footer>
© <script>document.write(new Date().getFullYear())</script> CD Baloncesto Huelva la Luz. Todos los derechos reservados.
</footer>
</body>
</html>