@charset "UTF-8";
/* ======================================== */
/* ARCHIVO PRINCIPAL MAIN.SCSS */
/* Este archivo importa todos los demás */
/* ======================================== */
/* 1. ABSTRACTS (Variables, mixins, funciones) */
main, header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
main:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.social-instagram, .boton-instagram {
  background: linear-gradient(135deg, #E4405F 0%, rgb(211.1513761468, 29.8486238532, 64.119266055) 100%);
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-instagram:hover, .boton-instagram:hover {
  background: linear-gradient(135deg, rgb(188.8096330275, 26.6903669725, 57.3348623853) 0%, rgb(166.4678899083, 23.5321100917, 50.5504587156) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(228, 64, 95, 0.4);
}
.social-instagram::before, .boton-instagram::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.social-instagram:hover::before, .boton-instagram:hover::before {
  left: 100%;
}

.social-facebook {
  background: linear-gradient(135deg, #3b5998 0%, rgb(44.7393364929, 67.4881516588, 115.2606635071) 100%);
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-facebook:hover {
  background: linear-gradient(135deg, rgb(37.6090047393, 56.7322274882, 96.8909952607) 0%, rgb(30.4786729858, 45.9763033175, 78.5213270142) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 89, 152, 0.4);
}
.social-facebook::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.social-facebook:hover::before {
  left: 100%;
}

.social-twitter {
  background: linear-gradient(135deg, #1da1f2 0%, rgb(11.9665271967, 133.4728033473, 208.0334728033) 100%);
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-twitter:hover {
  background: linear-gradient(135deg, rgb(10.5794979079, 118.0020920502, 183.9205020921) 0%, rgb(9.1924686192, 102.5313807531, 159.8075313808) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(29, 161, 242, 0.4);
}
.social-twitter::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.social-twitter:hover::before {
  left: 100%;
}

.social-youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.social-youtube:hover {
  background: linear-gradient(135deg, rgb(178.5, 0, 0) 0%, #990000 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}
.social-youtube::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}
.social-youtube:hover::before {
  left: 100%;
}

.m-5 {
  margin: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.p-5 {
  padding: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.m-10 {
  margin: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.p-10 {
  padding: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.m-15 {
  margin: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-15 {
  margin-bottom: 15px;
}

.p-15 {
  padding: 15px;
}

.pt-15 {
  padding-top: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.m-20 {
  margin: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.p-20 {
  padding: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.m-25 {
  margin: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-25 {
  margin-bottom: 25px;
}

.p-25 {
  padding: 25px;
}

.pt-25 {
  padding-top: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.m-30 {
  margin: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.p-30 {
  padding: 30px;
}

.pt-30 {
  padding-top: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.m-40 {
  margin: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.p-40 {
  padding: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

/* 2. BASE (Reset, tipografía, elementos base) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
h1 {
  color: #ffffff;
  border-bottom: 3px solid #dc143c;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

h2 {
  color: #000000;
  font-size: 2em;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #dc143c;
  transition: color border-left-color ease;
}
h2:hover {
  color: #dc143c;
  border-left-color: #000000;
}

h3 {
  color: #dc143c;
  font-size: 1.5em;
  margin-bottom: 10px;
  margin-top: 25px;
  transition: color 0.3s ease;
}
h3:hover {
  color: #a80e28;
}

p {
  margin-bottom: 15px;
  text-align: justify;
  font-size: 1.1em;
  line-height: 1.7;
  transition: color 0.3s ease;
}

ul {
  margin: 20px 0;
  padding-left: 30px;
}
ul li {
  margin-bottom: 8px;
  font-size: 1.1em;
  transition: color 0.3s ease;
}
ul li:hover {
  color: #dc143c;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 4px 8px rgba(220, 20, 60, 0.5);
  }
  50% {
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.8);
  }
}
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }
  nav ul li {
    margin: 5px 0;
  }
  main {
    margin: 20px 10px;
    padding: 20px;
  }
  header .header-container h1 {
    font-size: 2em;
  }
  .logo {
    animation: pulse 2s infinite;
  }
  .jugador {
    padding: 10px 15px;
  }
  .formulario-contacto .campo-formulario input, .formulario-contacto .campo-formulario textarea {
    font-size: 16px;
  }
  p {
    text-align: left !important;
    hyphens: auto;
    word-break: break-word;
  }
}
header {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  padding: 20px 0;
  border-bottom: 4px solid #dc143c;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
header .header-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .header-container .logo {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(220, 20, 60, 0.5);
  transition: transform 0.3s ease;
}
header .header-container .logo:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.8);
}
header .header-container h1 {
  font-size: 2.5em;
  font-weight: bold;
  text-shadow: 10px 2px 4px rgba(220, 20, 60, 0.7);
  margin: 0;
  transition: text-shadow 0.3s ease;
}
header .header-container h1:hover {
  text-shadow: 5px 5px 15px #dc143c;
}

nav {
  background: linear-gradient(135deg, #dc143c 0%, #b91030 100%);
  padding: 15px 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
nav ul li a:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

main {
  margin: 30px auto;
  padding: 40px;
}
main:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15), 0 4px 10px rgba(0, 0, 0, 0.1);
}

section {
  margin: 30px 0 40px 0;
  padding: 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-left: 5px solid #dc143c;
  border-radius: 5px;
  transition: transform box-shadow ease;
}
section:hover {
  transform: translateY(-2px);
}
section:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}
section h3 {
  color: #c8102e;
  font-size: 1.5em;
  padding-left: 10px;
  border-left: 5px solid #525050;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
section h3:hover {
  border-left-color: #dc143c;
  padding-left: 15px;
}

img:not(.logo) {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: transform box-shadow ease;
}
img:not(.logo):hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin-bottom: 2rem;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

footer {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  color: #ffffff;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  border-top: 4px solid #dc143c;
  box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
}
footer p {
  margin: 0;
  font-size: 0.9em;
  transition: color 0.3s ease;
}
footer p:hover {
  color: #dc143c;
}

/* 4. COMPONENTS (Botones, cards, formularios) */
button[type=submit] {
  background: linear-gradient(135deg, #dc143c 0%, rgb(173.25, 15.75, 47.25) 100%);
  color: #ffffff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 1.1em;
  align-self: flex-start;
}
button[type=submit]:hover {
  background: linear-gradient(135deg, rgb(149.875, 13.625, 40.875) 0%, rgb(126.5, 11.5, 34.5) 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.4);
}
button[type=submit]::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: width height 0.6s;
  transform: translate(-50%, -50%);
}
button[type=submit]:hover::before {
  width: 300px;
  height: 300px;
}

.boton-instagram {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
}
.boton-instagram i {
  margin-right: 8px;
}

.redes-sociales {
  margin-top: 40px;
  padding: 20px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
  border-left: 5px solid #dc143c;
  border-radius: 8px;
  transition: transform box-shadow ease;
}
.redes-sociales:hover {
  transform: translateY(-2px);
}
.redes-sociales:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}
.redes-sociales h3 {
  color: #c8102e;
  font-size: 1.4em;
  margin-bottom: 10px;
}
.redes-sociales p {
  font-size: 1.1em;
  margin-bottom: 15px;
}

.jugador {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #fdeef0 0%, #f8e6e9 100%);
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
  border-left: 5px solid hsl(352, 73%, 41%);
  transition: transform box-shadow background;
}
.jugador:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #ffffff 0%, #fdeef0 100%);
}
.jugador:hover h4 {
  color: #dc143c;
}
.jugador h4 {
  font-size: 1.3em;
  color: #1b1b1b;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.jugador p {
  font-size: 0.95em;
  color: #444;
  margin: 2px 0;
  transition: color 0.3s ease;
}

.formulario-contacto {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.formulario-contacto .campo-formulario {
  display: flex;
  flex-direction: column;
}
.formulario-contacto .campo-formulario label {
  font-weight: bold;
  margin-bottom: 8px;
  color: #333;
  transition: color 0.3s ease;
}
.formulario-contacto .campo-formulario input, .formulario-contacto .campo-formulario textarea {
  padding: 10px 15px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: border-color box-shadow transform;
}
.formulario-contacto .campo-formulario input:focus, .formulario-contacto .campo-formulario textarea:focus {
  border-color: #dc143c;
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 20, 60, 0.1);
  transform: scale(1.02);
}

/* 5. PAGES (Estilos específicos de páginas) */
.contacto-section .info-contacto {
  background-color: rgb(250.1, 250.1, 250.1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.contacto-section .info-contacto h3 {
  color: #dc143c;
  margin-bottom: 10px;
}
.contacto-section .info-contacto p {
  margin-bottom: 10px;
}
.contacto-section .info-contacto p:last-child {
  margin-bottom: 0;
}

.plantel-section h3 {
  color: #c8102e;
  font-size: 1.5em;
  padding-left: 10px;
  border-left: 5px solid #525050;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.plantel-section h3:hover {
  border-left-color: #dc143c;
  padding-left: 15px;
}

/*# sourceMappingURL=styles.css.map */
