/* GENERALES*/
:root {
  --background: #fff8e0;
  --primary: #39b3a2;
  --secondary: #7f636e;
  --yellow: #f0bb69;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #444;
  background-color: var(--background);
}

.container {
  /* 1140px */
  max-width: 120rem;
  padding: 0 5rem;
  margin: 0 auto;
}

.heading-primary,
.heading-secondary {
  font-family: "Sansita", sans-serif;
  font-weight: 800;
  color: #444;
}

.heading-primary {
  font-size: 5rem;
  line-height: 1.05;
  margin: 3.2rem 0;
}

.heading-secondary {
  font-size: 3.8rem;
  line-height: 1.2;
  margin-bottom: 2.6rem;
}

.list {
  width: 90rem;
  margin: 7rem auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.item {
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.1);
  padding: 24px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 24px;
  row-gap: 32px;
  align-items: center;
  cursor: pointer;
}

.title {
  font-size: 24px;
  font-weight: 500;
  font-family: "Sansita";
}
.text{
  font-family: "Sansita";
}

.icon {
  width: 24px;
  stroke: var(--primary);
}

.hidden-box {
  display: none;
  font-family: "Roboto";
}

.hidden-box p {
  line-height: 1.6;
  margin-bottom: 24px;
}

.open {
  border-top: 4px solid var(--primary);
  border-bottom: 4px solid var(--primary);
}

.open .hidden-box {
  display: block;
}

.open .title {
  color: var(--primary);
}

.open .text {
  padding-left: 5rem;
  font-size: 1.8rem;
  font-weight: 300;
}

.section--form--question {
  padding: 4.8rem 0 12.8rem;
}

.extra--question {
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 11px;
  overflow: hidden;
}

.extra--question--text {
  background-color: #65b5a1;
  padding: 4.8rem 6.4rem 6.4rem 6.4rem;
}

.exttra-text-container {
  margin-bottom: 4.8rem;
}

.extra-text {
  font-size: 2rem;
  line-height: 1.8;
}

.extra--question-img-box {
  background-image: url("../assets/preguntas02.jpg");
  background-size: cover;
  background-position: center;
}

.extra--question--form {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 2.4rem;
}

.extra--question--form label {
  color: #222;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.extra--question--form input,
.extra--question--form textarea,
.extra--question--form select {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.8rem;
  font-family: inherit;
  color: inherit;
  border: none;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.extra--question--form textarea {
  height: 25rem;
}

.extra--question--form input::placeholder,
.extra--question--form textarea::placeholder {
  color: #aaa;
}

.extra--question input:focus,
.extra--question textarea:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem rgba(253, 242, 233, 0.5);
}

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;
  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;
  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn--form {
  background-color: var(--yellow);
  color: #555;
  align-self: end;
  padding: 1.2rem;
}

.btn--form:hover {
  background-color: #fff;
  color: #555;
}

.btn--outline:link,
.btn--outline:visited {
  color: #555;
  background-color: #39b3a2;
}

.btn--cellphone {
  width: 25rem;
  align-self: center;
  box-shadow: 5px;
  text-align: center;
  padding: 0.5rem 1rem;
}

.btn--shadow {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2),
    /* Sombra externa */ inset 1px 1px 3px rgba(255, 255, 255, 0.3); /* Sombra interna */
  transition: all 0.3s ease;
  button:active {
    box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.3),
      /* Más sombra interna */ none; /* Sin sombra externa */
  }
}

.contact--part {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.6rem;
}

.text--cellphone--button {
  align-self: center;
}

.textarea--container {
  margin-bottom: 1.6rem;
}

#contacto--btn.clicked {
  background-color: var(--secondary);
  color: #fff;
}

.number--part {
  pointer-events: none;
  opacity: 0.4;
}

.input-feedback {
  font-size: 1.6rem;
  margin-top: 10px;
  font-family: "Roboto", sans-serif;
}

.link--color {
  color: var(--primary);
  text-decoration: none;
}

/*NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR*/
.navbar {
  background-color: hsl(172, 41%, 45%);
  color: #FFFFFF;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content:center; 
  border: 0px;
  
}

.navbar .nav--container {
  display: flex;
  justify-content: center;
  flex-grow: 1;
  border: 0px;
  justify-content: center;
  align-items: center;  
}

.navbar .navbar--logo a img {
  width: 200px;
  height: auto;
  margin-right: 20px;
}

.navbar .navbar--menu {
  list-style: none;
  display: flex;
  gap: 5px;
  margin: 0;
  padding: 0;
  margin-top:70x;
 
}

.navbar .navbar--menu li {
  margin: 0;
  margin-top: 10px;

}

.navbar .navbar--menu a {
  text-decoration: none;
  color: #FFFFFF;
  font-size:large;
  font-weight: bold;
  margin-right: 20px;
  gap: 2px;
}

.navbar .navbar--menu a:hover {
  color: #F0BB69;
}

.navbar .navbar--botones {
  display: flex;
  gap: 10px;
  margin-left: 120px;
   
}

.navbar .navbar--botones .boton--claro {
  background-color: #65B5A1;
  color: #FFFFFF;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
  border-color: #FFFFFF;
  font-family: "sansita";
  font-size: larger;
  font-weight: bold;
  cursor: pointer;
  border: 0px;
}

.navbar .navbar--botones .boton--azul {
  background-color: #124C5F;
  color: #FFFFFF;
  border-color: #F0BB69;
  padding: 10px 10px 10px 10px;
  border-radius: 10px;
  font-family: "sansita";
  font-size: larger;
  font-weight: bold;
  cursor: pointer;
  border: 0px;
}

.navbar .navbar--botones .boton--claro:hover {
  background-color: #F0BB69;
}

.navbar .navbar--botones .boton--azul:hover {
  background-color: #777;
}

.menu-btn {
  cursor: pointer;
  font-size: 24px;
  display: none;
  z-index: 21;
  position: relative;
  right: 3px;
}

.mobile-menu {
  display: none;
  background-color: #124C5F;
  color: #FFFFFF;
  position:absolute; /*se cambió de fixed a absolute para evitar que estubiera fijo el menu al hacer scroll*/
  top:5%;
  right: 0;
  width: 250px; 
  height: 50%;
  padding: 20px;
  z-index: 10;
 
}

.mobile-menu ul.mobile-navbar--menu {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px; /*se agrego para bajar ewl texto*/
  text-align: center;
}

.mobile-menu ul.mobile-navbar--menu li {
  margin: 20px 0;
  
}

.mobile-menu ul.mobile-navbar--menu a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: larger;
  font-weight: bold;
}

.mobile-menu ul.mobile-navbar--menu a:hover {
  color: #F0BB69;
}

.mobile-menu .mobile-navbar--botones {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu .mobile-navbar--botones button {
  background-color: #65B5A1;
  color: #FFFFFF;
  border-color: #FFFFFF;
  padding: 10px;
  border-radius: 10px;
  font-family: "sansita";
  font-size: larger;
  font-weight: bold;
  cursor: pointer;
}

.mobile-menu .mobile-navbar--botones .boton--azul {
  background-color: #124C5F;
  border-color: #F0BB69;
}

.mobile-menu .mobile-navbar--botones button:hover {
  background-color: #F0BB69;
}

/* Mostrar el botón del menú hamburguesa en pantallas pequeñas */
@media (max-width: 900px) {
  .navbar .navbar--menu {
      display: none; /* Ocultar menú en pantallas pequeñas */
  }
  
  .navbar .navbar--botones {
      display: none; /* Ocultar botones en pantallas pequeñas */
  }
  
  .menu-btn {
      display: block; /* Mostrar botón del menú hamburguesa */
  }
}

@media (max-width: 900px) {
  .mobile-menu.active {
      display: block;
  }
} /*NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR NAVBAR*/

/*body{
    background-color: #FFF8E0;
    font-family: "sansita", "roboto";
    margin: 0;
    padding: 0;
    
}
*/


/*FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER*/

.footer--safeDog{
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #44A194;
  padding: 20px;
  margin: 0;
  flex-wrap: wrap;
  color: #ffffff;
  text-align: center;
}

.footer--info{
  display: flex;
  flex-direction:column;
  gap: 10px;
  padding: 0;
  margin: 0;
  
}

.footer--info .footer--question{
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 50px;
  
}
.footer--info ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  
}

.footer--info li{
  margin: 0;
}

.footer--info a{
  color: #FFFFFF;
  text-decoration: none;
}

.footer--info .footer--list li a:hover{
  color: #F0BB69;
}

.footer--logo{
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
}

.footer--logo img{
  height: 200px;
  width: 150px;

}



.iconos{
  display: flex;
  gap: 20px;
  
}

.iconos img{
  width: 50px;
  height: 50px;
}
.iconos .logo--fb{
  width: 58px;
  height: 48px;
}

.iconos .logo--insta{
  width: 60px;
  height: 50px;
}


.footer--copy{
  width: 100%;
  text-align: center;
  margin-top: 20px;
  margin-left: -10px;
 
}

.footer--copy h4{
  width: 100%;
  text-align: center;
  margin-top: 20px;


}



@media(max-width: 600px){
  .footer--safeDog{
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer--logo {
      margin: 30px 0;
      text-align: center;
  }

  .footer--info ul{
      align-items: center;
  }

  .footer--copy{
      margin-top: 10px;
      text-align: center;
      align-items: center;
  
  }
} /*FOOTER FOOTER FOOTER FOOTER FOOTER FOOTER */