/* desing aule.co */
/* template done for aule.co enterprise developer of software */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: "Quicksand-VariableFont_wght";

}

@font-face {
  font-family: "Quicksand-VariableFont_wght";
  src: url(../assets/fonts/Quicksand-VariableFont_wght.ttf);
}

:root {
  --color-primary: #b10505;
  --color-secundary: #082c3c;
  --color-three: #e3b972;
  --color-four: #817e7e;
  --font-size-title: 2.5rem;
  --font-size-subtitle: 1.75rem;
  --font-size-text: 1.1rem;
  --padding-section: 4rem 0;
  --margin-bottom-card: 2rem;
  --footer-bg-color: #2c3e50;
  --footer-text-color: #ecf0f1;
  --footer-link-color: #ffffff;
  --footer-link-hover-color: #3498db;
  --footer-heading-color: #ffffff;
  --footer-padding-y: 4rem;
  --footer-icon-bg: rgba(255, 255, 255, 0.15);
}


@media (max-width: 768px) {
  :root {
    --font-size-title: 2rem;
    --font-size-subtitle: 1.5rem;
    --font-size-text: 1rem;
    --padding-section: 3rem 0;
    --margin-bottom-card: 2.5rem;
  }
}

@media (max-width: 576px) {
  :root {
    --font-size-title: 1.75rem;
    --font-size-subtitle: 1.25rem;
    --font-size-text: 0.95rem;
    --padding-section: 2rem 0;
    --margin-bottom-card: 2rem;
  }
}


section {
  margin: 120px 0;
}

@media screen and (max-width: 995px) {
  section {
    margin: 50px 0;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
i,
span {
  font-family: "Quicksand-VariableFont_wght";
  font-weight: 600;
  color: var(--color-secundary);
}

a {
  text-decoration: none;
}

.btn {
  transform: scale(1);
  transition: transform 0.4s;
}

.btn:hover {
  transform: scale(1.05);
  transition: transform 0.4s;
}

.navbar {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8FCF0 55%, #B00505 100%);
  z-index: 1;
}

.collapse {
  align-items: center;
  justify-content: space-around;
}

.collapse .container-nav-logo {
  display: flex;
  align-items: center;
}

.collapse .container-nav-logo img {
  width: 60px;
}

.collapse .container-nav-logo h1 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  margin-left: 10px;
  color: #000;
}

.collapse .navbar-nav .nav-link {
  color: #000;
  font-size: 18px;
  font-weight: 900;
}

.collapse .navbar-nav .nav-link.link-aule {
  color: #000;
  border: 3px solid var(--color-three);
  border-radius: 40px;
  cursor: pointer;
  background-color: var(--color-three);
}

.collapse .navbar-nav .nav-link.link-aule:hover {
  color: white;
  background-color: transparent;
}

.navbar .nav-item .nav-link.active {
  border-bottom: 2px solid var(--color-secundary);
}

.nav-img-phone {
  display: none;
}

@media screen and (max-width: 995px) {
  .collapse {
    display: inline-block;
  }

  .navbar-toggler:focus {
    box-shadow: none;
  }

  .container-nav-logo {
    display: none !important;
  }


  .nav-fa-phone {
    color: var(--color-secundary);
    background-color: #fff;
    padding: 10px 15px;
    border-radius: 5px;
  }

  .nav-text-phone {
    font-size: 20px;
    font-weight: 600;
    color: white;
  }

  .navbar-nav .nav-link {
    text-align: center;
  }

  .nav-img-phone {
    display: block;
    max-width: 100%;
    width: 60px;
  }

  .collapse .container-nav-logo img,
  .collapse .container-nav-logo h1 {
    display: none;
  }

  .collapse .navbar-nav .nav-link.link-aule {
    text-align: center;
  }
}

.coverpage {
  background: linear-gradient(90deg, #FFFFFF 0%, #F8FCF0 55%, #B00505 100%);
  width: 100%;
  height: 100vh;
  margin-top: 0;
}

.coverpage::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  z-index: 0;
}

.coverpage-logo picture img {
  max-width: 500px;
  width: 250px;
  margin: auto;
  margin-left: 0%;
}

.coverpage-text {
  position: relative;
  z-index: 2;
}

.coverpage h2 {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  color: var(--color-secundary);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.coverpage .lead {
  font-size: 1.25rem;
  color: #555;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.btn.btn-inscription-coverpage {
  width: 200px;
  padding: 1rem;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  border-radius: 30px;
  border: 2px solid var(--color-three);
}

.coverpage-image {
  max-width: 1200px;
  width: 550px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  position: relative;
  bottom: 30px;
  right: 5%;
  z-index: 0;
}

.coverpage-image {
  animation: float 6s ease-in-out infinite;
}

/* Animaciones */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Responsivo para celulares y pantallas grandes */

@media (max-width: 995px) {
  .coverpage h2 {
    font-size: 2.1rem;
    font-weight: bold;
    line-height: 2rem;
    position: relative;
    bottom: 55px;
  }


  .btn.btn-inscription-coverpage {
    width: 100px;
    padding: .5rem;
    background-color: var(--color-primary);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    border: 2px solid var(--color-secundary);
    position: relative;
    bottom: 55px;
  }


  .coverpage-logo picture img {
    max-width: 500px;
    width: 200px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .2));
    position: relative;
    bottom: 100px;
    right: 0;
  }

  .coverpage-image {
    display: none;
  }
}

@media (min-width: 1440px) {

  .title-cover {
    font-size: 2rem;
  }

  .btn {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .coverpage-image {
    max-width: 1200px;
    width: 700px;
    position: relative;
    bottom: -10px;
    right: 4%;
  }

  .coverpage-logo picture img {
    max-width: 500px;
    width: 350px;
    margin: auto;
    margin-left: 0%;
  }
}

@media screen and (min-width:1024px) and (max-width:1025px) {
  .coverpage img {
    max-width: 500px;
    width: 480px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, .2));
    position: relative;
    bottom: 15px;
    right: 0;
  }

}


.cards-direct a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cards-direct a:hover {
  transform: scale(1.05);
}

.cards-direct h2 {
  width: 100%;
}

.cards-direct .circle-wrapper {
  width: 180px;
  height: 180px;
  background-color: var(--footer-bg-color);
  border-radius: 50%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.cards-direct i {
  font-size: 60px;
  color: #fff;
  animation: pulse 2s infinite ease-in-out;
}

.cards-direct .title-cards-direct {
  background-color: var(--color-primary);
  color: #ffffff;
  padding: 1rem;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0;
}

/* Animación */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Responsive */
@media screen and (max-width: 995px) {
  .cards-direct .circle-wrapper {
    width: 100px;
    height: 100px;
  }

  .cards-direct .img-cards-direct {
    width: 60%;
    height: 60%;
  }

  .cards-direct .title-cards-direct {
    font-size: 15px;
  }
}


.welcome-image {
  max-width: 100%;
  width: 800px;
  transition: transform .3s ease-in-out;
}

.welcome-image:hover {
  transform: scale(1.1);
}

.welcome p {
  font-weight: 500;
}

.rounded-circle {
  background-color: var(--color-primary);
  width: 460px;
  height: 290px;
  z-index: 1;
  transform: rotate(60deg);
  position: absolute;
}

@media screen and (max-width:995px) {

  .rounded-circle {
    display: none;
  }

  .welcome .me-3 {
    display: none;
  }
}

/* history */
.history-section {
  background: url('../assets/us/history.jpg') center center/cover no-repeat;
  min-height: 100vh;
  position: relative;
}

.history-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(92, 91, 91, 0.5);
  z-index: 1;
}

.history-section .container {
  position: relative;
  z-index: 2;
}

/* Logo */
.logo {
  max-width: 220px;
  width: 200px;
  position: relative;
  left: 19%;
}

/* Textos */
.academy-name {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
}

.section-title {
  font-size: 5rem !important;
  color: var(--color-primary) !important;
  /* azul fuerte */
  font-weight: 700;
  text-align: center;
}

.section-description {
  font-size: calc(.7rem + .8vw);
  color: white;
  text-align: justify;
}



@media screen and (max-width: 955px) {
  .logo {
    max-width: 220px;
    width: 200px;
    position: relative;
    left: 0%;
    margin-top: 10px;
  }

}

/* cards */
.mvf-section {
  padding: var(--padding-section);
}

.mvf-title {
  font-size: var(--font-size-title);
  color: var(--color-secundary);
  margin-bottom: 3rem;
  font-weight: 700;
}

.mvf-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  margin-bottom: var(--margin-bottom-card);
  transition: transform 0.3s ease-in-out;
  height: 100%;
}

.mvf-card:hover {
  transform: translateY(-5px);
}

.mvf-card-header {
  background-color: var(--color-primary);
  color: white;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  padding: 1.5rem;
  font-size: var(--font-size-subtitle);
  font-weight: 600;
  text-align: center;
}

.mvf-card-body {
  padding: 2rem;
}

.mvf-card-text {
  font-size: var(--font-size-text);
  line-height: 1.6;
  color: #495057;
  text-align: justify;
}


/*PROMOTION BOOKS*/

.book-section {
  background-color: var(--color-primary);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

.book-cover {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.9);
}

.category-tabs .nav-link {
  font-weight: 600;
  color: #000;
  border: none;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.category-tabs .nav-link.active {
  color: #000;
  background-color: rgba(13, 110, 253, 0.1);
  border-bottom: 3px solid var(--color-primary);
}

.book-title {
  color: #fff;
  border-left: 4px solid var(--color-three);
  padding-left: 15px;
  margin: 20px 0 15px;
  font-size: 2rem;
}

.book-subtitle {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 20px;
}

.book-text,
.content-highlight p {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}


.book-section .btn.btn-books {
  background-color: var(--color-three);
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.book-section .btn.btn-books:hover {
  background-color: var(--color-four);
  color: #fff;
}

@media (max-width: 995px) {
  .book-cover {
    margin-bottom: 20px;
    max-width: 90%;
  }

  .book-title {
    font-size: 1.3rem;
  }

  .book-subtitle {
    font-size: 1.1rem;
  }

  .book-text,
  .content-highlight p {
    font-size: 0.95rem;

  }

  .book-section .btn.btn-books {
    width: 100%;
    font-size: 1rem;
    padding: 12px;
  }
}


/* GALERÍA */

.gallery-section {
  position: relative;
  overflow: hidden;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.gallery-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-secundary);
  margin-bottom: 3rem;
}

.btn-gallery {
  background-color: var(--color-primary);
  color: white;
  font-weight: 600;
  border-radius: 50px;
  font-size: 22px;
}

.btn-gallery:hover {
  background-color: var(--color-three);
}


.gallery-item {
  transition: transform 0.3s ease-in-out;
  margin: auto;
}

.gallery-item img {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.32);
  border-radius: 30px;
  border: 5px outset var(--color-primary);
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item-1 {
  transition: transform 0.3s ease-in-out;
  margin: auto;
}

.gallery-item-1 img {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.32);
  border-radius: 30px;
  border: 5px outset var(--color-primary);

}

.gallery-item-1:hover {
  transform: scale(1.05);
}


@media screen and (min-width:1440px) {
  .btn-gallery {
    font-weight: 600;
    border-radius: 50px;
  }
}


@keyframes moveShape1 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(50px, 80px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes moveShape2 {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  40% {
    transform: translate(-60px, -40px) rotate(90deg);
  }

  80% {
    transform: translate(20px, 70px) rotate(270deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}



/* contacto */
.contact h2 {
  color: #fff;
  margin-bottom: 20px;
}

.contact p {
  line-height: 20px;
  font-weight: 500;
  color: #fff;
}

.contact p i {
  margin-right: 10px;
  padding: 10px 5px;
  background-color: var(--color-secundary);
  border-radius: 5px;
  width: 8.8%;
  color: white;
  text-align: center;
}

.contact .contact-major {
  background-color: var(--color-primary);
  padding: 50px;
}

.contact .contact-bg {
  background-image: url(../assets/contact/contact.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 567px) {
  .contact p i {
    width: 10%;
  }
}

/* footer */
.footer-section {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
  padding: var(--footer-padding-y) 0;
  border-top: 5px solid var(--footer-link-hover-color);
}

.footer-heading {
  color: var(--footer-heading-color);
  font-size: 1.45rem;
  /* Un poco más grande */
  margin-bottom: 1.8rem;
  /* Mayor separación del texto */
  font-weight: 700;
  text-align: center;
  /* Por defecto centrado en móvil */
  position: relative;
  padding-bottom: 0.5rem;
  /* Espacio para el subrayado */
}

/* Pequeña línea decorativa debajo de los títulos del footer */
.footer-heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--footer-link-hover-color);
  border-radius: 2px;
}

.footer-text {
  font-size: 0.98rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0.7rem;
  color: #fff;
}

.footer-link {
  color: var(--footer-link-color);
  text-decoration: none;
  transition: color 0.3s ease-in-out, transform 0.2s ease-in-out;
  display: inline-block;
  padding: 0.3rem 0;
}

.footer-link:hover {
  color: var(--footer-link-hover-color);
  text-decoration: none;
  /* No subrayado al pasar el ratón */
  transform: translateX(5px);
  /* Pequeño desplazamiento hacia la derecha */
}

.list-unstyled li {
  margin-bottom: 0.6rem;
  text-align: center;
}

.social-icons .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  /* Iconos un poco más grandes */
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  /* Color de fondo de icono */
  color: var(--footer-link-color);
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  text-decoration: none;
  margin: 0 0.5rem;
  /* Mayor espacio entre iconos */
}

.social-icons .social-link:hover {
  background-color: var(--footer-link-hover-color);
  transform: translateY(-3px);
  /* Pequeño efecto de "salto" */
}

.social-icons img {
  width: 28px;
  height: 28px;
}

.footer-divider {
  border-color: rgba(255, 249, 249, 0.2);
  /* Divisor más visible pero aún sutil */
  margin-top: 3.5rem;
  margin-bottom: 3rem;
}

/* Alineación responsiva del texto y títulos */
@media (min-width: 768px) {

  .footer-heading,
  .footer-text,
  .list-unstyled li {
    text-align: start;
    /* Alineación a la izquierda en pantallas medianas y grandes */
  }

  .footer-heading::after {
    left: 0;
    /* Mueve el subrayado a la izquierda */
    transform: translateX(0);
  }

  .social-icons {
    text-align: start;
    /* Alinea los iconos a la izquierda en pantallas medianas y grandes */
  }
}

.shortcut {
  right: 40px;
  top: auto;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.shortcut .btn:focus {
  outline: 0;
  box-shadow: none;
}



@media (max-width: 767px) {
  .shortcut {
    right: 15px;
  }
}

.shortcut.position-fixed {
  bottom: 20px;
}

/* Boton al costado */
.shortcut .btn.btn-primary {
  width: 50px;
  height: 50px;
  line-height: 36px;
  background: var(--color-three);
  border-radius: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 2rem;
  padding: 0;
  border: none;
}

@media (max-width: 767px) {
  .shortcut .btn.btn-primary {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 14px;
  }
}

.shortcut .btn.btn-primary:hover {
  color: #fff;
}


/* Ganadores De Elecciones  */

/* Contenedor principal */
.gobierno-escolar-2026-contenedor {
  max-width: 720px;
   font-family: "Quicksand-VariableFont_wght";
  width: 100%;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #e0e0e0;
  margin: 0 auto;
}

/* Cabecera */
.cabecera-elecciones-2026 {
  background: white;
   font-family: "Quicksand-VariableFont_wght";
  
  padding: 36px 40px 24px;  
  text-align: center;
  border-bottom: 2px solid #b10505;
}

.encabezado-ganadores {
  font-size: 1.8rem;
  font-family: "Quicksand-VariableFont_wght";
  margin-bottom: 12px;
  font-weight: 600;
  color: #2c3e50;
  letter-spacing: 1px;
}

.fecha-comicios {
  font-size: 0.95rem;
   font-family: "Quicksand-VariableFont_wght";
  color: #5d6d7e;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.texto-felicitacion {
  margin-top: 16px;
  font-family: "Quicksand-VariableFont_wght";
  font-size: 0.9rem;
  color: #4a5b6e;
  line-height: 1.5;
  border-top: 1px solid #e8ecef;
  padding-top: 16px;
}

/* Área de contenido - CENTRADA */
.zona-resultados {
  padding: 28px 30px;
   font-family: "Quicksand-VariableFont_wght";
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Contenedor de la foto - CENTRADO */
.marco-fotografia {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  width: 100%;
}

.retrato-ganador {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #b10505;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: #eceff1;
}

/* Tarjeta del ganador - CENTRADA */
.bloque-electo {
  text-align: center;
  margin-bottom: 28px;
  width: 100%;
}

.cargo-elegido {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: #b10505;
  background: #f4f6f9;
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-family: "Quicksand-VariableFont_wght";
}

.nombre-completo {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e2a36;
  margin-bottom: 6px;
  line-height: 1.3;
 font-family: "Quicksand-VariableFont_wght";
}

.grado-academico {
  font-size: 1rem;
  color: #6c7a89;
  margin-bottom: 24px;
   font-family: "Quicksand-VariableFont_wght";
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Estadísticas de votos - CENTRADA */
.panel-estadisticas {
  background: #f9fafb;
  font-family: "Quicksand-VariableFont_wght";
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid #e9ecef;
  width: 100%;
}

.fila-estadistica {
  display: flex;
   font-family: "Quicksand-VariableFont_wght";
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid #e2e6ea;
}

.fila-estadistica:last-child {
  border-bottom: none;
}

.etiqueta-dato {
  font-weight: 500;
  color: #495057;
   font-family: "Quicksand-VariableFont_wght";
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.valor-numerico {
  font-weight: 700;
  font-size: 1.4rem;
  color: #2c3e50;
}

.insignia-porcentaje {
  background: #2c3e50;
  color: white;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Barra de progreso */
.grafico-progreso {
  margin-top: 20px;
  width: 100%;
}

.texto-progreso {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #b10505;
   font-family: "Quicksand-VariableFont_wght";
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.barra-fondo {
  background: #e2e6ea;
  border-radius: 4px;
  height: 6px;
  overflow: hidden;
}

.barra-avance {
  background: #b10505;
  width: 71%;
  height: 100%;
  border-radius: 4px;
}

/* === PIE DE PÁGINA - CENTRADO === */
.footer-votacion {
  margin-top: 2.8rem;
  background: #eaf0f8;
  border-radius: 2rem;
   font-family: "Quicksand-VariableFont_wght";
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid #c5d8ec;
  width: 100%;
}

.footer-votacion p:first-child {
  font-size: 1.7rem;
   font-family: "Quicksand-VariableFont_wght";
  font-weight: 700;
  color: #b10505;
  margin-bottom: 0.4rem;
}

.footer-votacion p:first-child i {
  color: var(--color-primary);
  
  margin-right: 8px;
}

.footer-votacion .fecha-eleccion {
  font-size: 1.1rem;
  color: #1f4b6e;
  background: white;
   font-family: "Quicksand-VariableFont_wght";
  padding: 0.4rem 1.8rem;
  border-radius: 40px;
  display: inline-block;
  margin: 0.8rem 0;
  font-weight: 500;
  border: 1px solid #adc9ea;
}

.footer-votacion .mensaje-seguro {
  font-size: 1rem;
  color: #b10505;
  display: flex;
   font-family: "Quicksand-VariableFont_wght";
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-votacion .mensaje-seguro i {
  color: #b10505;
}

hr {
  border: none;
   font-family: "Quicksand-VariableFont_wght";
  height: 1px;
  background: linear-gradient(to right, transparent, #b6cfec, transparent);
  margin: 0.8rem 0;
}

/* responsive */
@media (max-width: 700px) {
  .grid-ganadores {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .header-ganadores h1 {
    font-size: 2rem;
  }

  .nombre-ganador {
    font-size: 1.8rem;
  }

  .foto-candidato {
    width: 100px;
    height: 100px;
  }

  .zona-resultados {
    padding: 20px;
  }
}

