:root{
--font-btn: 'Quicksand', sans-serif;
--font-txt: 'Lora', serif;
--font-title: 'Georgia', serif;


}

.all {
    background-color: #f7f7f7;
    background-blend-mode: normal, multiply;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
/*Los submenus del navbar*/
.submenu-toggle {
  display: flex;
  align-items: center;
  border-radius: 1rem;
  background: none;
  border: none;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  color: #333;
  padding: 0.5rem;
}
.submenu-toggle .arrow {
  margin-right: 0.3rem; /* espacio controlado */
}
.arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Cuando el submenú está abierto, rotamos la flecha hacia abajo */
.submenu.open ~ .submenu-toggle .arrow {
  transform: rotate(90deg); /* de ▸ a ▾ */
}


.has-submenu {
  position: relative; /* establece el contexto para el submenu */
}

.submenu {
  position: absolute;
  top: 100%; /* justo debajo del botón */
  left: 0;
  background-color: #fff9f7;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 0.5rem 1rem;
  list-style: none;
  display: none;
  z-index: 1000;
}

.submenu li {
  margin: 0.5rem 0;
}

.submenu.open {
  display: block;
}

  .navbar-inner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.textNav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

   .nav-indicator {
      position: absolute;
      background-color: #6dbb7e;
      border-radius: 6px;
      transition: all 0.4s ease;
      z-index: 0;
      pointer-events: none;
    }
   .nav-wrapper {
      position: relative;
      flex-grow: 1;
    }

    .nav-list {
      width: 100%;
      list-style: none;
      display: flex;
      gap: 1rem;
      justify-content: flex-end;
      align-items: center;
      position: relative;
      padding: 0;
      margin: 0;
    }


  
    .navbar {
      width: 100%;
      justify-content: space-between;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      background:#fff9f7;
      padding: 1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      z-index: 100;
      transition: transform 0.4s ease;
    }
  

.nav-hidden {
    transform: translateY(-100%);
}

.logoNav {
    height: 50px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: right;
    gap: 5px;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 900;
      margin-left: auto; /* 👈 empuja el botón al extremo derecho */
}

.bar {
    width: 100%;
    height: 4px;
    background-color: #a8d88f;
    border-radius: 2px;
    transition: all 0.4s ease;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-list {
  position: relative;
  text-align: center;
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    list-style: none;
}




 .nav-btn {
        border-radius: 6px;

      display: inline-block;
      padding: 0.5rem 1rem;
      text-decoration: none;
      color: #333;
      font-weight: 500;
      position: relative;
      z-index: 1;
      background: none;
      border: none;
      cursor: pointer;
         font-family: var(--font-btn);
    font-weight: bold;
    }

    
 .nav-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .nav-btn.active {

  background: linear-gradient(135deg, #fffbe6, #ffe58f, #fadb14);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: white;


    }


    .nav-indicator {
      position: absolute;
      background: linear-gradient(135deg, #fffbe6, #ffe58f, #fadb14);
      border-radius: 6px;
      transition: all 0.3s ease;
      z-index: 0;
      pointer-events: none;
    
    }


@media (max-width: 992px) {

  .top-image{
    margin-top: 10rem;
  }
  .navbar-inner{
    display: inline-block;
  }
  .nav-container {
        flex-direction: column;
        align-items: flex-start;
      }
  .navbar{
    align-items: center;
  }
    .menu-toggle {
        display: flex;
        justify-content: right;
    }

      .nav-list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    display:flex;
    margin-top: 1rem;
  }

  .nav-list.active {
    display: flex;
  }

    .nav-list {
        flex-direction: column;
        align-items:end;
        width: 100%;
        display: none;

     
    }
    .nav-list li {
    width: 100%; 
    text-align: center;
    border-bottom: 1px solid #ccc;
  }

  .nav-list li a {
    display: block;
    padding: 1rem;
    width: 100%;
    text-decoration: none;
    color: #333;
    font-weight: bold;
  }

  .nav-indicator {
    display: none;
  }

  .submenu.open {
  display: block;
}
    .nav-list.active {
        display: flex;
    }

    .nav-btn {
      width: 100%;
        padding: 0.75em 1em;
        text-align: center;
        color: black;
        background: none;
    }

    .nav-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .nav-btn.active {

  background: linear-gradient(135deg, #fffbe6, #ffe58f, #fadb14);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        color: white;


    }

    .navbar.nav-hidden {
        transform: translateY(-100%);
    }

  
  



}




/*Presentacion*/


.top-image {
  position: relative;
  width: 100%;
  height: 80vh;
  background-image: url('/images/topIndexLarge.jpg'); 
  background-size: cover;
  background-position: center;
  display: flex;
  margin-top: 1rem;
  justify-content: flex-end;  
  align-items: center;      
  padding: 2rem;
}

.hero-content {
 font-size:1.3rem ;
  max-width: 500px;
  color: white;
  text-align: center;
    z-index: 1;

}

.hero-content p{
font-size: 1.3rem;
color: gray;
}

h1 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: #fff;
    font-family: var(--font-title);

}
.sections p{
   font-size: 1.3rem; 
   font-family: var(--font-txt);
}

.sections{
  align-items: center;
  text-align: center;
  justify-content: center;
}
.hero-btn {
  cursor: pointer;
  display: inline-block;
  padding: 0.8rem 1.6rem;
  border-radius: 30px;
  background: linear-gradient(135deg, #fffbe6, #ffe58f, #fadb14);
  color: #333;
  text-decoration: none;
  font-weight: bold;
  font-family: var(--font-btn);
  font-size: 1rem;
  transition: transform 0.3s ease;
   
}

.hero-btn:hover {
  transform: scale(1.05);
}

.containerAll{
 background: #fff9f7;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      padding: 1rem;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
      color: #1a1a1a;
      max-width: 100%;
      text-align: center;


}

.containerAll .sections{

    max-width: 1200px;  
    position: relative;  
  margin: 2px auto;         
  padding: 1rem .2rem;
    box-sizing: border-box;
    min-height: calc(100vh - 160px);
    border-radius: 25px;
  background: linear-gradient(to top, rgba(222, 214, 214, 0.8), rgba(200, 200, 200, 0.6));
  backdrop-filter: blur(2px); /* si usas transparencia */

}




/*Services*/

@import url('https://fonts.googleapis.com/css?family=Cardo:400i|Rubik:400,700&display=swap');

:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);

}

html, body {
  height: 100%;
}

#services {
  display: grid;
  place-items: center;
}

.page-content {
  display: grid;
  grid-gap: 1rem;
  padding: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  font-family: 'Rubik', sans-serif;
}

@media (min-width: 600px) {
  .page-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .page-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  box-shadow: 0 1px 1px rgba(0,0,0,0.1), 
              0 2px 2px rgba(0,0,0,0.1), 
              0 4px 4px rgba(0,0,0,0.1), 
              0 8px 8px rgba(0,0,0,0.1),
              0 16px 16px rgba(0,0,0,0.1);
}

@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}

.card::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(
    to bottom,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.009) 11.7%,
    hsla(0, 0%, 0%, 0.034) 22.1%,
    hsla(0, 0%, 0%, 0.072) 31.2%,
    hsla(0, 0%, 0%, 0.123) 39.4%,
    hsla(0, 0%, 0%, 0.182) 46.6%,
    hsla(0, 0%, 0%, 0.249) 53.1%,
    hsla(0, 0%, 0%, 0.320) 58.9%,
    hsla(0, 0%, 0%, 0.394) 64.3%,
    hsla(0, 0%, 0%, 0.468) 69.3%,
    hsla(0, 0%, 0%, 0.540) 74.1%,
    hsla(0, 0%, 0%, 0.607) 78.8%,
    hsla(0, 0%, 0%, 0.668) 83.6%,
    hsla(0, 0%, 0%, 0.721) 88.7%,
    hsla(0, 0%, 0%, 0.762) 94.1%,
    hsla(0, 0%, 0%, 0.790) 100%
  );
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}

.bg-1::before {
  background-image: url('/images/regularCleaning.jpg');
}

.bg-2::before {
  background-image: url('/images/deepCleaning.jpg');
}

.bg-3::before {
  background-image: url('/images/ioCleaning.jpg');
}

.bg-4::before {
  background-image: url('/images/pcCleaning.jpg');
}
.bg-5::before {
  background-image: url('/images/woodBcgnd.jpg');
}
.bg-6::before {
  background-image: url('/images/woodBcgnd.jpg');
}
.bg-7::before {
  background-image: url('/images/woodBcgnd.jpg');
}
.bg-8::before {
  background-image: url('/images/woodBcgnd.jpg');
}


.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}

.content > * + * {
  margin-top: 1rem;
}

.title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.copy {
  font-family: 'Cardo', serif;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

.btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
  text-decoration-line: none;
}

.btn:hover {
  background-color: #1a1a1a;
}

.btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .card::after {
    transform: translateY(0);
  }

  .content {
    transform: translateY(calc(100% - 4.5rem));
  }

  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
  .card:focus-within {
    align-items: center;
  }

  .card:hover::before,
  .card:focus-within::before {
    transform: translateY(-4%);
  }

  .card:hover::after,
  .card:focus-within::after {
    transform: translateY(-50%);
  }

  .card:hover .content,
  .card:focus-within .content {
    transform: translateY(0);
  }

  .card:hover .content > *:not(.title),
  .card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within::before,
  .card:focus-within::after,
  .card:focus-within .content,
  .card:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}

/*About*/

.inf-container {
  padding: 9rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  place-items: center end;
  grid-gap: 2rem;
  
}

.inf_right {
  padding-left: 3%;
  margin-right: 0%;
}

.inf_left {
  width: 100%;
  place-items: center start;
}

.profile {
  width: 100%;
  border-radius: 0%;
    margin-right: 10rem;
  background-size: cover;
  outline-offset: 1rem;
}

.inf_left * {
  margin: 0.5rem 0;
}


@media (max-width: 768px) {
 
  .inf-container {
    padding: 3rem 0;
    grid-template-columns: repeat(1, 1fr);
    place-content: center center;
    place-items: center;
    gap: 5rem;
  }

  .inf_right {
    grid-column: 1;
    padding-right: 3%;
    grid-row: 1;
    text-align: center;
  }

  .inf_left {
    grid-column: -2;
    grid-row: 2;
    text-align: justify;
    width: 100%;
  }

  .profile {
    margin-top: 3rem;
    width:100%;
    margin-right: 0;
  }

  

}

/*footer*/
.logoFooter {
    height: 100px;
    margin-left: 35%;
}

footer .container {
  background: linear-gradient(135deg, #fffbe6, #ffe58f, #fadb14);
      bottom: 0;
      color: #333;
}

.row {
    display: flex;
    justify-content: space-between;
    padding: 40px 100px;
}

.footer-col ul {
    list-style: none;
    color: #333;
}


.footer-col p {
    font-family: var(--font-txt);
    text-align: center;
    padding: 10px 0;
    color: #333;

}

.footer-col h4 {
    color: #333;
    text-align: left;
    margin-bottom: 25px;
    font-size: 22px;
    position: relative;
    font-family: var(--font-title);
}

.footer-col h4::before {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    background-color: #fff;
    bottom: -10px;
}

.footer-col ul li {
    padding: 10px 0;
}

.footer-col ul li a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    opacity: 0.7;
    transition: 0.5s;
}

.footer-col ul li a:hover {
    opacity: 1;
}



.footer-col input {
    border: none;
    width: 250px;
    height: 45px;
    display: block;
    padding-left: 20px;
    margin: 14px 0;
}

.footer-col .inputSubmit {
    padding: 0px 20px;
    font-family: var(--font-btn);
    background-color: white;
    border: none;
    color: black;
    cursor: pointer;
    border-radius: 2rem;
}

.footer-col .inputSubmit:hover {
    box-shadow: 0 0 2rem 0.5rem #4c404080;

}

.col p {
    color: white;
}

.row hr {
    opacity: 0.7;
}


@media (max-width: 800px) {
    footer .row {
        flex-direction: column;
        padding-top: 5px;

        padding-left: 100px;
    }

    footer .footer-col ul {
        top: 10%;
        margin-left: 50px;
        margin-bottom: 20px;
    }

    .footer-col input {
        width: 100%;
    }
}
.social-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
  color: white;
  font-size: 1rem;
}

.social-horizontal p {
  margin: 0;
  font-weight: bold;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

/**Clients review**/
.testimonials-section {
  text-align: center;
  padding: 3rem 1rem;
  background-color: none;
  font-family: var(--font-sans);
}

.testimonials-section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
}

.slide {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  transition: opacity 0.5s ease;
}

.slide.active {
  display: flex;
}

.quote-icon {
  width: 40px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1rem;
}

.author {
  font-weight: bold;
  color: #555;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 2;
}

.nav:hover {
  color: #8fcf75; /* pistache tone on hover */
}

.nav.prev { left: -1rem; }
.nav.next { right: -1rem; }

.dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
}

.dot.active {
  background: #b2d69a; /* pistache */
}

/**features**/
.description{
  text-align: center;
  background-color: #ab75cf;
  font-family: var(--font-sans);
}
.features {
  width: 100%;
  background-color:#b2d69a;
;
  padding-top: calc(1.625rem + 4.5vw);
  padding-bottom: calc(1.375rem + 1.5vw);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.section__title {
  font-size: calc(1.35rem + 1.2vw);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: calc(1.28125rem + .375vw);
}

.features__items {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  color: #fff;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  border-radius:0;
  max-width: 100%;
  padding: 1rem;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease;
}
.feature-card img{
max-width: 50%;  
border-radius: 50%;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.section__title {
  font-size: calc(1.35rem + 1.2vw);
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin-bottom: calc(1.28125rem + .375vw);
}



