/* FUENTES PERSONALIZADAS */

/* Anton */
@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* Blacksword */
@font-face {
  font-family: "Blacksword";
  src: url("../fonts/Blacksword.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Axiforma - base */
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-ThinItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-SemiBoldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-ExtraBoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}

@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-BlackItalic.ttf") format("truetype");
  font-weight: 900;
  font-style: italic;
}

/* Axiforma Heavy (950) */
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-Heavy.ttf") format("truetype");
  font-weight: 950;
  font-style: normal;
}
@font-face {
  font-family: "Axiforma";
  src: url("../fonts/Axiforma-HeavyItalic.ttf") format("truetype");
  font-weight: 950;
  font-style: italic;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    line-height: 1.5;
    padding-top: 80px;
  }


  html, body {
    width: 100%;
    height: 100%;
  }

  /* Estilo general del body */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: 80px; 
}

/* Contenido principal */
.wrapsemibox {
  flex: 1; 
}

/* Footer siempre al fondo */
.footer-wrapper {
  margin-top: auto;
}


  
/* NAVBAR */

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 32px; /* 2rem */
  background-color: #ffffff;
  flex-wrap: wrap;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; 
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}

.navbar__logo img {
  max-height: 40px;
}

.navbar__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 32px; /* 2rem */
  cursor: pointer;
}

/* MENÚ */

.navbar__menu {
  list-style: none;
  display: flex;
  gap: 32px; /* 2rem */
  align-items: center;
  font-family: "Axiforma", sans-serif;
  font-weight: bold;
}

.navbar__menu li a:not(.social-link) {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-size: 12.8px; /* 0.8rem */
  position: relative;
}

.navbar__menu li a:not(.social-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background-color: #DC1D29;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.navbar__menu li a:not(.social-link):hover::after {
  transform: scaleX(1);
}

/* REDES SOCIALES */

.navbar__social {
  display: flex;
  gap: 8px; /* 0.5rem */
  margin-left: auto;
}

.navbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #000;
  transition: background-color 0.3s;
}

.navbar__social a:hover {
  background-color: #DC1D29;
}

.navbar__social img {
  width: 15px;
  height: 15px;
  filter: brightness(0) invert(1);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .navbar__toggle {
    display: block;
  }

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 16px 0; /* 1rem */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 998;
  }

  .navbar__menu.active {
    display: flex;
  }

  .navbar__menu li {
    text-align: center;
  }

  .navbar__menu .navbar__social {
    justify-content: center;
    margin-left: 0;
    padding-top: 16px; /* 1rem */
  }

  .navbar__logo img{
    max-height:30px;
  }
}





/* HERO Slider general */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 75vh;
}

/* Oculta los slides por defecto */
.hero-slide {
  display: none !important;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* Solo el slide activo es visible */
.hero-slide.active {
  display: flex !important;
  opacity: 1;
}

/* Diseño base */
.hero-slide {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem 0rem 2rem;
  gap: 1rem;
  align-items: flex-end;
  justify-content: center;
  box-sizing: border-box;
}

.hero-slide.slide-1 {
  background-color: #000;
}

.hero-slide.slide-2 {
  background-color: #fff; 
}

.hero-slide.slide-3 {
  background-color: #fff; 
}


/* Columnas de imagen */
.hero__left {
  flex: 0 0 20%;
}
.hero__right {
  flex: 0 0 80%;
}
.hero__left img,
.hero__right img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* SLIDE 2: Fondo blanco, proporciones ajustadas */
.slide-2 {
  background-color: #fff;
  align-items: center; /* centra verticalmente las dos columnas */
  justify-content: center;
}

.slide-2.hero-slide {
  padding-right: 0 !important;
}

/* Columnas para el slide 2 */
.slide-2 .hero__left {
  flex: 0 0 40%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-2 .hero__right {
  flex: 0 0 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Tamaño específico de imágenes solo en el slide 2 */
.slide-2 .hero__left img {
  max-width: 60%;
  height: auto;
}

.slide-2 .hero__right img {
  max-width: 85%;
  height: auto;
}



/* SLIDE 3 - estructura base */
.slide-3 {
  min-height: 470px;
  background-color: #000;
  align-items: stretch;
  padding: 0 !important;
  gap: 0 !important;
}

/* Izquierda: imagen cubriendo todo el contenedor */
.slide-3 .hero__left {
  flex: 0 0 35%;
  position: relative;
}
.slide-3 .hero__left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Derecha: fondo + imagen centrada */
.slide-3 .hero__right {
  flex: 0 0 65%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Imagen de fondo derecha */
.slide-3 .hero__right .background-img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.slide-3 .hero__right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.35); /* blanco con opacidad */
  z-index: 1;
}



/* Texto superpuesto centrado */
.slide-3 .hero__right .overlay-text {
  position: relative;
  z-index: 2;
  max-width: 30%;
  top: 2rem;
  height: auto;
}



/* Responsive */
@media (max-width: 768px) {
  .slide-1{
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 550px;
  }

  .slide-1 .hero__left {
    width: 47%;
    margin-bottom: 1rem;
  }

  .slide-1 .hero__right {
    width: 100%;
  }

  .hero-slide {
    flex-direction: column;
    align-items: center;
  }

  .hero-slider {
    height:500px;
  }

  .hero__left {
    width: 60%;
  }

  .hero__right {
    width: 90%;
  }

  .hero__left img,
  .hero__right img {
    width: 100%;
  }

}

/*RESPONSIVE SLIDE 2*/

@media (max-width: 768px) {
  .slide-2 {
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 550px;
  }

  .slide-2 .hero__left {
    width: 60%;
    margin-bottom: 0rem;
  }

  .slide-2 .hero__right {
    width: 100%;
  }

  .slide-2 .hero__left img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .slide-2 .hero__right img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
}

/*Responsive slide 3*/
@media (max-width: 768px) {
  .slide-3{
    min-height: 550px;
    display: flex;
    flex-direction: column;
  }
  
  .slide-3 .hero__left {
    display: none;
  }

  .slide-3 .hero__right {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide-3 .hero__right .background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .slide-3 .hero__right .overlay-text {
    position: relative;
    z-index: 2;
    width: 70%; 
    max-width: 300px;
    height: auto;
    display: block;
    padding: 3.5rem;
  }
}



/* Flechas */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
}
.hero-prev {
  left: 0.5rem;
}
.hero-next {
  right: 0.5rem;
}

/* Puntos indicadores */
.hero-dots {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  z-index: 20;
}
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s ease;
}
.dot.active {
  background-color: #fff;
}







/*SEPARADOR*/

.separator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #DC1D29;
  padding: 1rem;
  gap: 1rem;
  text-align: center;
  flex-wrap: wrap;
}

.separator img {
  max-height: 3rem;
  height: auto;
}

.separator p {
  color: #fff;
  font-family: "Axiforma", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0;
}

.separator p span {
  font-weight: 700;
}


@media (max-width: 600px) {
  .separator {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }

  .separator img {
    display: none;
  }

  .separator p {
    font-size: 0.9rem;
    max-width: 90%;
  }
}




/*SECCIÓN PRODUCTOS*/

.products {
  padding: 4rem 2rem;
  text-align: center;
}

.products h2 {
  font-family: "Axiforma", sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #000;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}



.product-card {
  padding: 1rem;
  border-radius: 20px;
  text-align: center;
  transition: box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  aspect-ratio:  3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.product-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.product-card .image-container {
  height: 300px; 
  width: 100%;
  max-width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.product-card img {
  width: 100%;
  max-width: 450px;
  height:450px;
  object-fit: contain;
  background-color: #fff; 
  margin: 0 auto 1rem;
  display: block;
  mix-blend-mode: multiply;
  flex-shrink: 0;
}

.product-card h3 {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 1.7rem;
  margin-bottom: 0.5rem;
  color: #808080;
  margin-bottom: 0.5rem;
  min-height: 50px;  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.product-card span {
  color:#DC1D29;
}

.product-card p {
  font-family: "Axiforma", sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #808080;
  min-height: 40px;  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
    max-width: 250px; 
  }

  .product-card img {
    height: 200px; 
  }

  .product-card p {
    font-size: 0.7rem;
    min-height: 50px;
  }

  .product-card h3 {
    font-size: 1rem;
    min-height: 40px;
  }
}



/*SEPARADOR PRODUCTOS*/

.product-separator {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  background-color: #DC1D29;
  padding: 1rem 2rem;
  text-align: center;
}

.product-separator img {
  height: 3rem;
}

.product-separator p {
  color: #ffffff;
  font-family: "Axiforma", sans-serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.product-separator p span {
  font-weight: 700;
}

@media (max-width: 600px) {
  .product-separator {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
  }

  .product-separator img {
    display: none;
  }

  .product-separator p {
    font-size: 0.9rem;
    max-width: 90%;
  }
}



/*SECCIÓN CATEGORIA PRODUCTOS*/

.product-categories {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  max-width: 800px;
  margin: 0 auto;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  align-items: center;
  padding: 2rem;
  border-radius: 8px;
  height: 100%;
  text-decoration: none;
  color: inherit;
  text-align: center;
  min-height: 180px;
  margin-bottom: 0px;
}

.category-card:hover {
  transform: scale(1.02);
}


.category-card img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
}

.category-title {
  background-color: #DC1D29;
  color: #fff;
  font-family: "Axiforma", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.1rem;
  margin-top: 1rem;
  border-radius: 5px;
  display: inline-block;
  width: 85%;
}

.category-card:last-child {
  justify-content: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}





@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    max-width: 120px;
  }

  .category-title {
    font-size: 0.7rem;
    padding: 0.4rem 2rem;
    width: 70%;
  }
}



/*SECCIÓN SERVICIOS*/

.servicios-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.servicios-card {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.servicios-card:hover {
  transform: scale(1.02);
}

.servicios-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.servicios-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servicios-card h3,
.servicios-card p {
  font-family: "Axiforma", sans-serif;
}

.servicios-card h3 {
  margin-top: 1rem;
  font-size: 1.4rem;
  color: #333;
  font-weight: 800;
}

.servicios-card p {
  font-weight: 500;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #333;
}



/*NEWSLETTER*/

.newsletter-section {
  background-color: #DC1D29;
  padding: 2rem;
  text-align: center;
}

.newsletter-separator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.newsletter-separator img {
  height: 3rem;
}

.newsletter-separator p {
  color: #ffffff;
  font-family: "Axiforma", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
}

/* Formulario */


.newsletter-section {
  background-color: #DC1D29;
  padding: 1rem;
  font-family: "Axiforma", sans-serif;
}

.newsletter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap; /* se adapta en mobile */
}

.newsletter-bar img {
  height: 2.5rem;
}

.newsletter-bar p {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
}

/* Formulario inline */

.newsletter-inline-form {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.newsletter-inline-form input[type="email"] {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 30px;
  font-family: "Axiforma", sans-serif;
  font-size: 0.7rem;
  width: 200px;
  color: #DC1D29;
  outline: none;
}

.newsletter-inline-form input::placeholder {
  color: #DC1D29;
}

.newsletter-inline-form button {
  background-color: #000;
  color: #ffffff;
  font-family: "Axiforma", sans-serif;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.newsletter-inline-form button:hover {
  background-color: #000;
}

@media (max-width: 600px) {
  .newsletter-bar {
    flex-direction: column;
    gap: 1rem;
  }

  .newsletter-bar img {
    display: none;
  }

  .newsletter-inline-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-inline-form input[type="email"],
  .newsletter-inline-form button {
    width: 100%;
    max-width: 300px;
  }
}



/*SECCIÓN DESCARGÁ LA APP*/

.app-download {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.app-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap; 
}

.app-image-left img {
  max-width: 400px;
  height: auto;
}

.app-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: rem;
}

/* Parte superior: imagen "descargá la app" + texto al lado */
.app-header {
  display: flex;
  align-items: top;
  gap: 1rem;
}

.app-header img {
  max-height: 130px;
  height: auto;
  padding-left: 0.65rem;
}

.app-header p {
  color: #333;
  font-family: "Axiforma", sans-serif;
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Imagen con 3 celulares */
.app-multiphone img {
  max-width: 120%;
  height: auto;
}

/* Botón */
.app-button {
  margin-top: 0.5rem;
  padding-left: 0.65rem;
}

.download-button {
  background-color: #DC1D29;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-family: "Axiforma", sans-serif;
  font-size: 0.8rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.download-button:hover {
  background-color: #DC1D29;
}

@media (max-width: 768px) {
  .app-content {
    align-items: center;
    text-align: center;
  }

  .app-multiphone img {
    max-width: 100%;
  }
}




/*FORMULARIO*/
.contact-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

.contact-section h2 {
  font-family: "Axiforma", sans-serif;
  font-size: 1.4rem;
  color: #000;
  font-weight: 500;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.contact-container {
  display: flex;
  gap: 3rem;
  max-width: 800px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Columna izquierda */
.contact-left {
  flex: 1;
  min-width: 300px;
}

.contact-left iframe {
  width: 100%;
  height: 500px;
  border-radius: 6px;
  border: none;
}

.contact-info-text {
  margin-top: 1rem;
  color: #333;
  width: 80%;
}

.contact-info-text p {
  font-family: "Axiforma", sans-serif;
  font-size: 0.6rem;
}

/* Columna derecha */
.contact-right {
  flex: 1;
  min-width: 300px;
}

.contact-right h3 {
  font-family: "Axiforma", sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  color: #333;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  background-color: transparent;
  padding: 0.5rem 0;
  font-size: 0.8rem;
  width: 100%;
  font-family: "Axiforma", sans-serif;
  font-weight: 600;
}


.form-checkbox {
  display: grid;
  grid-template-columns: auto 1fr; 
  gap: 0.5rem;
  align-items: start;
  font-size: 0.7rem;
  color: #333;
  line-height: 1.3;
  margin-top: 0.5rem;
  font-family: "Axiforma", sans-serif;
}


.form-checkbox input[type="checkbox"] {
  margin-top: 0.2rem;
  margin-right: 0.5rem;
}


.form-button {
  display: flex;
  justify-content: flex-end;
}

.form-button button {
  background-color: #DC1D29;
  color: #fff;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 30px;
  font-family: "Axiforma", sans-serif;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-button button:hover {
  background-color: #DC1D29;
}

@media (max-width: 768px) {
  .contact-section h2 {
    text-align: center;
  }

  .contact-container {
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  .contact-left iframe {
    width: 100%;
  }

  .contact-info-text {
    width: 100%;
    text-align: center;
    font-size: 0.6rem;
  }

  .contact-right {
    width: 100%;
  }

  .contact-form {
    width: 100%;
  }

  .form-button {
    justify-content: center;
  }

  .form-button button {
    width: 100%;
    max-width: 300px;
  }

  .form-checkbox {
    font-size: 0.6rem;
  }
}



/* FOOTER NAVBAR */
.footer-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px; /* 2rem */
  background-color: #000;
  border-top: 1px solid #000;
}

.footer-navbar__logo img {
  max-height: 40px;
}

/* Menú del footer */
.footer-navbar__menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px; /* 2rem */
  margin: 0;
  padding: 0;
  font-family: "Axiforma", sans-serif;
}

.footer-navbar__menu li a:not(.social-link) {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  font-size: 12.8px; /* 0.8rem */
  position: relative;
}

.footer-navbar__menu li a:not(.social-link)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  border-radius: 5px;
  background-color: #DC1D29;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-navbar__menu li a:not(.social-link):hover::after {
  transform: scaleX(1);
}

/* Redes sociales */
.footer-navbar__social {
  display: flex;
  gap: 8px; /* 0.5rem */
  margin-left: 16px; /* 1rem */
}

.footer-navbar__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #000;
  transition: background-color 0.3s;
}

.footer-navbar__social a:hover {
  background-color: #DC1D29;
}

.footer-navbar__social img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

@media (max-width: 768px) {
  .footer-navbar__menu {
    display: none;
  }
}

.site-footer {
  background-color: #000;
  color: #fff;
  padding: 16px 32px 16px; /* 1rem 2rem 1rem */
  font-size: 13.6px; /* 0.85rem */
  font-family: "Axiforma", sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  max-width: 100%;
  margin: 0 auto 32px; /* 2rem */
  gap: 32px; /* 2rem */
}

/* Columna izquierda */
.footer-contact {
  flex: 1;
  min-width: 250px;
  padding-left: 32px; /* 2rem */
}

.footer-contact h4 {
  font-size: 24px; /* 1.5rem */
  margin-bottom: 16px; /* 1rem */
  color: #fff;
  font-weight: 500;
}

.footer-contact p {
  margin-bottom: 8px; /* 0.5rem */
  color: #ccc;
  font-size: 12.8px; /* 0.8rem */
  font-weight: 800;
}

.footer-contact strong {
  color: #fff;
}

a[href^="mailto:"] {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

a[href^="mailto:"]:hover {
  text-decoration: underline;
  transform: scale(1.1);
}

/* Columna derecha */
.footer-logo {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
}

/* Separador rojo */
.footer-divider {
  height: 2px;
  background-color: #DC1D29;
  max-width: 100%;
  margin: 0 auto 16px; /* 1rem */
}

/* Copyright */
.footer-bottom {
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.footer-bottom p {
  font-family: "Axiforma", sans-serif;
  font-size: 12.8px; /* 0.8rem */
  color: #999;
  margin: 0;
}

@media (max-width: 768px) {
  .footer-logo {
    padding-left: 32px; /* 2rem */
  }

  .footer-bottom {
    text-align: center;
  }
}


.navbar-wrapper .navbar::before,
.navbar-wrapper .navbar::after {
  content: none !important;
  display: none !important;
}


.semiboxshadow img {
  display: none !important;
}

.footer-wrapper {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-top: 20px;
  margin-left: -50vw;
  margin-right: -50vw;
  max-width: none !important;
  box-sizing: border-box;
  z-index: 9999;
}


.footer-top {
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-contact {
  text-align: left !important;
  margin: 0 !important;
  padding-left: 2rem !important;
}
