:root {
  --primario: #008fff;
  --secundario: #0e6297;
  --blanco: #ffffff;
}

/* Tipografía base */
body {
  font-family: 'Krub', sans-serif;
  font-size: 16px;
  margin: 0;
}

.bg,
.bg-nav,
.bg-footer {
  background-color: var(--primario);
}

.bg-hero,
.bg-servicios,
.bg-galeria,
.bg-app {
  background-color: var(--primario);
  min-height: auto;
  padding: 4rem 1rem;
}

.bg-servicios-registrados{
  background-color: var(--primario);
  min-height: auto;
}


.imagen-perro {
  width: 100%;
  max-width: 500px;
  margin-top: 4rem;
  height: auto;
}

.bg-app {
  position: relative;
  background-image: url(../img/pelucho-pino.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contenido-hero-final {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 4rem 2rem;
  max-width: 1200px;
  width: 100%;
}

/* Pasos circulares */
.pasos {
  width: 50px;
  height: 50px;
  background-color: var(--secundario);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  font-weight: bold;
  color: white;
}

/* AppBar personalizado */
header[data-role="appbar"] .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Botones personalizados */
.button.primary {
  background-color: var(--secundario);
  color: var(--blanco);
  font-weight: bold;
  text-transform: uppercase;
}

.button.secondary.outline {
  border: 2px solid var(--secundario);
  color: var(--secundario);
  background-color: transparent;
  font-weight: bold;
  text-transform: uppercase;
}

/* Encabezados */
h1, h2, h3, h4 {
  font-family: 'Krub', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.6rem; }

/* Espaciado adicional */
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mt-6 { margin-top: 6rem; }

img {
  max-width: 100%;
  height: auto;
}

/* Íconos */
.inline-list li {
  display: inline-block;
  margin-right: 1rem;
}

.inline-list a {
  color: inherit;
  text-decoration: none;
}

/* Utilidades*/
.sombra{
    -webkit-box-shadow: 0px 5px 15px 0px rgba(112,112,112,0.48);
    -moz-box-shadow: 0px 5px 15px 0px rgba(112,112,112,0.48);
    box-shadow: 0px 5px 15px 0px rgba(112,112,112,0.48);
    background-color: var(--blanco);
    padding: 1.4rem;
}

.requisitos{
	color:black;
}

/* Requisitos */
@media(min-width: 768px){
 .requisitos{
  width:26rem;
  height:33rem;
  border-radius: 10%;
  border:none;
  color:black;
 }
}

.requisitos ul {
  list-style: none;
  padding: 0;
  text-align: left;
  
}

.requisitos li {
  padding: 1px 0;
  border-bottom: 1px dashed #ccc;
}

/* Requisitos */
@media(min-width: 768px){
 .requisitos-cuestionario{
  width:26rem;
  height:23rem;
  border-radius: 10%;
  border:none;
  color:black;
 }
}

.requisitos-cuestionario ul {
  list-style: none;
  padding: 0;
  text-align: left;
  
}

.requisitos-cuestionario li {
  padding: 1px 0;
  border-bottom: 1px dashed #ccc;
}

/* Forms */
form[data-role="form"] {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

form[data-role="form"] input[type="email"],
form[data-role="form"] button {
  padding: 1rem;
  font-size: 1.6rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
}

/* Footer enlaces */
footer a {
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

/* Perros hablemos */
.perro-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: contain;
}

.row-perros {
  min-height: 300px;
}

/* Swiper */
.swiper {
  width: 100%;
  max-width: 1100px;
  margin: 2rem auto;
}

.swiper-slide {
  text-align: center;
}

.swiper-slide img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.swiper-button-prev,
.swiper-button-next {
  color: #ffffff;
}

.swiper-pagination-bullet-active {
  background-color: #ffffff;
}

.fg-white {
  color: #ffffff;
}

/* Encabezado h2 específico */
h2 {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 4rem;
}

@media (max-width: 768px) {
  .bg-hero,
  .bg-servicios,
  .bg-galeria,
  .bg-app {
    height: auto;
    padding: 2rem 1rem;
  }

  .imagen-perro {
    display: none;
  }

  .perro-img {
    max-width: 250px;
  }

  header[data-role="appbar"] .container {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.6rem; }

  .tile span {
    font-size: 5rem !important;
  }

  .contenido-hero-final {
    padding: 2rem 1rem;
  }

  .swiper-slide img {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  header[data-role="appbar"] {
    display: none;
  }
}


