
.banner-about-section {
    padding: 3% 0 0 0;
  }

  .banner-about-section .banner-about-container {
    display: grid;
    grid-template-columns: 50% 50%;
  }



  
  .banner-about-section .banner-about-container .banner-media {
    background-image: url("../media/jpg/banner-about.jpg");
    border-radius: 0 600px 600px 0;
    height: 60vh;
    background-size: cover;
    padding: 20px 0 0 0;
    overflow: hidden;
  }
  .info-services-title{
    align-items: center;
      text-align: center;
  }
  .banner-about-section .banner-about-container .banner-title {
    gap: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .banner-about-section .banner-about-container .banner-title h1 {
    font-size: 70px;
    
    line-height: 100px;
  }
    .banner-about-section .banner-about-container .banner-title #btn-about-call {
    
    font-size: 16px;
    color: #ffffff
  }

  .banner-about-section .banner-about-container .banner-title span {
    font-size: 128px;
    color: var(--red);
  }

  .banner-about-section .banner-about-container .banner-title #btn-about-call:hover {
    color: var(--red);
  }

  .banner-about-section .banner-about-container .banner-title p {
    font-size: 30px;
    font-weight: 600;
    margin: 0;
  }

  .banner-about-section .about-us-content {
    padding: 2% 20%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .banner-about-section .about-us-content .about-text p {
    text-align: justify;
  }

  .banner-about-section .about-us-content .about-cards {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }

  .banner-about-section .about-us-content .about-cards .about-card {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    padding: 5% 10%;
    justify-items: center;
    border-radius: 150px 150px 0 0;
    transition: all 0.4s ease;
  }

  .banner-about-section
    .about-us-content
    .about-cards
    .about-card:hover
    .icon-box {
    transform: translateY(0%);
  }

  .banner-about-section
    .about-us-content
    .about-cards
    .about-card:hover
    .card-text {
    opacity: 1;
    transform: translateY(0%);
  }

  .banner-about-section .about-us-content .about-cards .about-card .icon-box {
    transform: translateY(50%);
    transition: all 0.4s ease;
  }

  .banner-about-section .about-us-content .about-cards .about-card .card-text {
    transition: all 0.4s ease;
    display: flex;
    transform: translateY(50%);
    opacity: 0;
    flex-direction: column;
    color: white;
  }

  .banner-about-section .about-us-content .about-cards .about-card .card-text h2 {
    font-size: 16px;
    text-align: center;
  }

  .banner-about-section .about-us-content .about-cards .about-card .card-text p {
    color: white;
    font-size: 12px;
    text-align: center;
  }

  .banner-about-section .about-us-content .about-card:nth-child(even) {
    background: black;
  }

  .banner-about-section .about-us-content .about-card:nth-child(odd) {
    background: var(--red);
  }

  .banner-about-section .about-us-content .about-card .icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-about-section .about-us-content .about-card .icon-box img {
    width: 70%;
    fill: white;
  }

  .blogs-section {
  padding: 80px 0;
  background: #f8f8f8;
  text-align: center;
}


.blogs-title {
  font-size: 42px;
  color: #e31e24;
  margin-bottom: 50px;
}

.testimonial-section {
    padding: 0 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.info-map p {
    display: flex;
    align-items: center;
    gap: 10px; /* espacio entre el icono y el texto */
}

.info-map p i.fa-solid {
    flex-shrink: 0; /* evita que el icono se encoja */
    width: 20px;    /* ancho fijo para alinear todos los iconos */
    text-align: center;
}

.info-map p a {
    color: inherit;
    text-decoration: none;
}

/* Excepción: el párrafo descriptivo (sin icono) no necesita flex */
.info-map > p:first-of-type,
.info-map > p:last-of-type {
    display: block;
}


.blogs-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.blog-card {
  background: #fff;
  width: 350px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
}

.blog-image {
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.blog-tag {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
}

.blog-content {
  padding: 25px;
  text-align: left;
}

.blog-content h3 {
  color: #e31e24;
  font-size: 20px;
  margin-bottom: 15px;
}

.blog-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.portfolio-filter{
display:flex;
gap:25px;
justify-content:center;
margin-bottom:40px;
}

.filter-btn{
background:none;
border:none;
font-size:14px;
cursor:pointer;
letter-spacing:2px;
}

.filter-btn.active{
border-bottom:2px solid red;
}

.read-btn {
      background: linear-gradient(to right, white 50%, var(--red) 50%);
    width: fit-content;
    padding: 2% 10%;
    border: 2px solid transparent;
    font-weight: 700;
    background-size: 200%;
    background-position: 100%;
    transform: skewX(-15deg);
    display: flex
;
    justify-content: center;
    align-items: center;
    color: white;
}

.read-btn:hover {
	color: var(--red);
	border: 2px solid var(--red);
	background-position: 0%;	
}



  @media (max-width: 996px) {

    .banner-about-section .banner-about-container .banner-media {
      height: 30vh;
    }
    

    .banner-about-section .banner-about-container {
      grid-template-columns: 100%;
      padding: 0 5% 0 0;
    }
    .banner-about-section .banner-about-container .banner-title p {
      text-align: center;
    }

    .banner-about-section .about-us-content {
      padding: 8% 10%;
      
    }
    

    .banner-about-section .about-us-content .about-cards {
      grid-template-columns: 100%;
    }

    .banner-about-section .about-us-content .about-cards .about-card {
      min-height: 315px;
      max-height: 300px;
    }

    .banner-about-section .about-us-content .about-cards .about-card .icon-box {
      transform: translateY(0%);
      transition: all 0.4s ease;
    }

    .banner-about-section .about-us-content .about-cards .about-card .card-text {
      transition: all 0.4s ease;
      display: flex;
      transform: translateY(0%);
      opacity: 1;
      flex-direction: column;
      color: white;
    }
  }
  /** find-us section **/
  .find-us-section {
      display: flex;
      padding: 5% 10%;
      justify-content: center;
  }

  .box-map {
      display: grid;
      grid-template-columns: 40% 60%;

      background: var(--red);
      padding: 1%;
      border-radius: 15px;
  }

  .box-map .info-map {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      padding: 5%;
  }

  .box-map .info-map h2 {
      color: white;
      margin-bottom: 20px;
      font-size: 2vw;
  }

  .box-map .info-map p {
      color: white;
      font-size: 1vw;
      text-wrap: balance;
      line-height: 1.6;
      margin-bottom: 10px;
  }
  .box-map .map-section iframe {
      width: 100%;
      height: 25vw;
      border: none;
      border-radius: 12px;
  }

  .box-map .info-map a {
      width: fit-content;
      padding: 1% 1% 0 1%;
      border: 2px solid transparent;
      font-weight: 700;
      background-size: 200%;
      background-position: 100%;
      transform: skewX(-15deg);
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
  }

  .box-map .info-map a:hover {
      border-bottom: 2px solid white;
  }

  @media (max-width: 996px) {
      .find-us-section {
          padding: 10%;
      }

      .box-map {
          display: flex;
          flex-direction: column;
          gap: 20px;
      }

      .box-map .info-map {
          align-items: center;
          text-align: center;
      }

      .box-map .info-map h2 {
          font-size: 6vw;
      }

      .box-map .info-map p {
          font-size: 4vw;
      }

      .box-map .map-section iframe {
          height: 60vw;
          width: 100%;
      }}
      .find-us-section {
      display: flex;
      padding: 5% 10%;
      justify-content: center;
  }

  .box-map {
      display: grid;
      grid-template-columns: 40% 60%;

      background: var(--red);
      padding: 1%;
      border-radius: 15px;
  }

  .box-map .info-map {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      padding: 5%;
  }

  .box-map .info-map h2 {
      color: white;
      margin-bottom: 20px;
      font-size: 2vw;
  }

  .box-map .info-map p {
      color: white;
      font-size: 1vw;
      text-wrap: balance;
      line-height: 1.6;
      margin-bottom: 10px;
  }
  .box-map .map-section iframe {
      width: 100%;
      height: 25vw;
      border: none;
      border-radius: 12px;
  }

  .box-map .info-map a {
      width: fit-content;
      padding: 1% 1% 0 1%;
      border: 2px solid transparent;
      font-weight: 700;
      background-size: 200%;
      background-position: 100%;
      transform: skewX(-15deg);
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
  }

  .box-map .info-map a:hover {
      border-bottom: 2px solid white;
  }

  @media (max-width: 996px) {
      .find-us-section {
          padding: 10%;
      }

      .box-map {
          display: flex;
          flex-direction: column;
          gap: 20px;
      }

      .box-map .info-map {
          align-items: center;
          text-align: center;
      }

      .box-map .info-map h2 {
          font-size: 6vw;
      }

      .box-map .info-map p {
          font-size: 4vw;
      }

      .box-map .map-section iframe {
          height: 60vw;
          width: 100%;
      }}
      .btn-banner,
.about-f3-section .cta-button a {
    background: linear-gradient(to right, white 50%, var(--red) 50%);
    background-size: 200%;
    background-position: 100%;
    padding: 14px 42px;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transform: skewX(-15deg);
    border: 2px solid transparent; /* <--- borde inicial */
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-banner:hover,
.about-f3-section .cta-button a:hover {
    background-position: 0%;
    color: var(--red);
    border-color: var(--red); /* <--- solo cambia color */
}
.info-services-section .about-us-content {
  padding-bottom: 0;
}

.info-services-title {
  margin-bottom: 0;
}

.services-section {
  margin-top: 0;
}
.banner-services .btn-banner,
.info-services-section .btn-banner,
.services-section .btn-banner  {
  background: linear-gradient(to right, white 50%, var(--red) 50%);
  background-size: 200%;
  background-position: 100%;
  padding: 14px 42px;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
  transform: skewX(-15deg);
  transition: all 0.3s ease;
}


/* SOLO PARA DECK */

.btn-about-us{
  font-size: 16px;
}

.banner-deck .btn-banner {
  margin: 30px auto 0;
  display: inline-flex;
  align-self: flex-start;
}


/* Hover effect */
.banner-cta .btn-banner:hover {
  background-position: 0%;
  color: var(--red);
}

/* Texto recto dentro del botón */
.banner-cta .btn-banner span {
  transform: skewX(15deg);
}






/* MOBILE */
@media (max-width: 996px) {
    .banner-services {
        height: 50vh;
    }

    .banner-services .banner-container .banner-text h1 {
        font-size: 40px;
    }

    .banner-services .btn-banner {
        padding: 14px 35px;
        font-size: 16px;
    }
}

/** info-services-section **/

.info-services-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5% 10% 5% 10%;
}

.info-services-section h2{
    color: var(--red);
    margin-bottom: 20px;
    font-size: 2vw;
}
.info{
    color: var(--red);
    margin-bottom: 20px;
    font-size: 2vw;
}
.info-services-section p{
    font-size: 1vw;
    text-align: center;
    text-wrap: balance;
    line-height: 1.6;
}

.info-services-section p strong{
    color: var(--red);
}

@media (max-width: 996px) {

    .info-services-section h2{
        font-size: 6vw;
        text-align: center;
    }

    .info-services-section p{
        font-size: 4vw;
    }
}

/** what-is-section **/

.what-is-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 5% 10% 10% 10%;
}

.what-is-section .title-section {
    border-right: solid;
    text-align: center;
}

.what-is-section .title-section h2 strong {
    color: var(--red);
    font-weight: 700;
    font-size: 3vw;
}

.what-is-section .title-section h2 {
    color: black;
    font-size: 5vw;
}

.what-is-section .text-section p {
    font-size: 1vw;
    text-wrap: balance;
    line-height: 1.6;
    margin-top: 25px;
}

.what-is-section .text-section p strong {
    color: var(--red);
}

@media (max-width: 996px) {
    .what-is-section {
        display: flex;
        flex-direction: column;
    }

    .what-is-section .title-section {
        border-right: none;
    }

    .what-is-section .title-section h2 strong {
        font-size: 6vw;
    }

    .what-is-section .title-section h2 {
        font-size: 10vw;
    }

    .what-is-section .text-section p {
        text-align: center;
        font-size: 4vw;
    }

}

/* service-img-section */
.service-img-section {
    background-color: var(--red);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5% 0;
}

.service-img-section h2 {
    color: rgb(255, 255, 255);
    font-size: 3vw;
    margin-bottom: 20px;
    text-align: center;
}

.service-img-section p {
    color: white;
    font-size: 1vw;
    text-align: center;
    text-wrap: balance;
    line-height: 1.6;
}

.service-img-section img {
    margin: 30px;
    width: 100%;
    max-width: 1900px;
    height: 25vw;
    object-fit: cover;
}

.service-img-section .list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5%;
    text-align: center;
    gap: 10px;
}
.service-img-section .list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--red);
}

.service-img-section .list ul li {
    padding: 5% 10%;
    background-color: white;
    border-radius: 15px;
    font-size: 1vw;
}

.service-img-section .list ul li strong {
    font-size: 1.5vw;
}

.table-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5%;
    color: white;
}

.table-services .table-box:first-child {
    padding: 5%;
    border: solid 3px white;
    border-radius: 15px 0 0 15px;
}

.table-services .table-box:last-child {
    padding: 5%;
    border: solid 3px white;
    border-radius: 0 15px 15px 0;
}

.table-services .table-box h3 {
    font-size: 2vw;
    margin-bottom: 15px;
}

.table-services .table-box ul {
    list-style: inside;
}

@media (max-width: 996px) {
    .service-img-section h2 {
        font-size: 6vw;
    }

    .service-img-section p {
        font-size: 4vw;
    }

    .service-img-section img {
        height: auto;
        width: 100%;
    }

    .service-img-section .list {
        grid-template-columns: 1fr;
        padding: 0 10%;
    }

    .service-img-section .list ul li {
        font-size: 4vw;
    }

    .service-img-section .list ul li strong {
        font-size: 5vw;
    }

    .table-services {
        grid-template-columns: 1fr;
    }

    .table-services .table-box {
        border-radius: 15px;
        margin-bottom: 20px;
    }

    .table-services .table-box:first-child,
    .table-services .table-box:last-child {
        margin: 5vw;
        border-radius: 15px;
    }

    .table-services .table-box h3 {
        font-size: 5vw;
    }
}

/** services-section **/

.services-section .services-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.services-section .services-container .service-item {
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 100px;
    grid-template-columns: repeat(2, 1fr);
}

.services-section .services-container .service-item .service-text h2,
.services-section .services-container .service-item .service-text p strong   {
    color: var(--red);
}
.services-section .services-container .service-item .service-text h3,
.services-section .services-container .service-item .service-text p strong   {
    color: var(--red);
}

.services-section .services-container .service-item .right {
    border-radius: 500px 0 0 500px;
    overflow: hidden;
}

.services-section .services-container .service-item .left {
    border-radius: 0 500px 500px 0;
    overflow: hidden;
}

.services-section .services-container .order .service-text {
    order: 2;
}

.services-section .services-container .order .service-media {
    order: 1;
}




@media (max-width: 996px) {

    .services-section {
        padding: 0;
    }

    .services-section .services-container .service-item {
        grid-template-columns: 100%;
        gap: 0px;
    
    }


    .services-section .services-container .service-item .service-text {
        padding: 10% 10% 2% 10%;
        text-align: center;
    }

    .services-section .services-container .order .service-text {
        order: 1;
    }

    .services-section .services-container .order .service-media {
        order: 2;
    }
}
/* Global Styles */

* {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  word-break: break-word;
  scroll-behavior: smooth;
}

:root {
  --red: #e52a32;
}

body {
  overflow-x: hidden;
  background: white;
}

img,
svg {
  max-width: 100%;
  -drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

a {
  display: inline-block;
  color: var(--blue);
  text-decoration: none;
  transition: all 0.25s ease-in-out;
}

button {
  cursor: pointer;
}

button,
i {
  transition: all 0.25s ease-in-out;
}

section {
  width: 100%;
  padding: 10%;
}

h1,
h2 {
  color: var(--gray);
  font-weight: 700;
  line-height: 1;
}

p {
  color: black;
  font-size: 16px;
  margin: 10px 0;
}

@keyframes background_animation {
  from {
    background-size: 0%;
  }

  to {
    background-size: 400%;
  }
}

@media (max-width: 996px) {
  section {
    padding: 20% 10%;
  }

  h1,
  h2 {
    font-size: 20px;
  }

  p,
  ol,
  ul {
    font-size: 14px;
  }
}

/* Header */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header .mobile-header {
  display: none;
}

header .line-address {
  background: var(--red);
  display: flex;
  justify-content: space-around;
  padding: 7px;
  align-items: center;
}

header .line-address .social-icon {
  display: flex;
  gap: 40px;
}

header .line-address a {
  display: flex;
  gap: 10px;
  color: white;
  justify-content: center;
  align-items: center;
}

header .line-address a:hover {
  color: black;
}

header .line-address a:hover i {
  color: black;
}

header .header-desktop {
  display: grid;
  grid-template-columns: 70% 30%;
}

header .header-desktop .header-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2% 5% 2% 5%;
  background-color: #fff;
}

header .header-desktop .header-left .logo {
  width: 15%;
}

header .header-desktop .header-left .menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

header .header-desktop .header-left .menu a {
  font-weight: 500;
  position: relative;
}

header .header-desktop .header-left .menu a::before {
  background: var(--red);
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  transition: 0.3s;
}

header .header-desktop .header-left .menu a:hover {
  color: var(--red);
}

header .header-desktop .header-left .menu a:hover::before {
  width: 100%;
}

header .header-desktop .header-right {
  background: var(--red);
  padding: 3% 10%;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}

header .header-desktop .header-right .social-icon {
  display: flex;
  gap: 10px;
}

header .header-desktop .header-right .social-icon a {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 30px;
  background: white;
}

header .header-desktop .header-right .social-icon a:hover {
  background: black;
}

header .header-desktop .header-right .social-icon a:hover i {
  color: white;
}

header .header-desktop .header-right .social-icon i {
  color: var(--red);
  font-size: 20px;
}

header .header-desktop .header-right .contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header-desktop .header-right .contact-button a {
  background: linear-gradient(to right, transparent 50%, white 50%);
  width: fit-content;
  padding: 2% 10%;
  border: 2px solid white;
  font-weight: 700;
  background-size: 200%;
  background-position: 100%;
  transform: skewX(-15deg);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--red);
}

header .header-desktop .header-right .contact-button a:hover {
  color: white;
  background-position: 0%;
  border: 2px solid white;
}

header .header-desktop .header-left .menu .dropdown {
  position: relative;
}

header .header-desktop .header-left .menu .dropdown-menu {
  position: absolute;
  list-style: none;
  top: 100%;
  left: 0;
  box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  background: white;
  padding: 1vw 0.5vw;
  display: none;
  flex-direction: column;
  gap: 1vw;
  z-index: 10;
  min-width: 15vw;
}

header .header-desktop .header-left .menu .dropdown:hover .dropdown-menu {
  display: flex;
}

@media (max-width: 996px) {
  header .line-address {
    display: grid;
    grid-template-columns: 100%;
  }

  header{
    position: fixed;
  }

  header .line-address a {
    font-size: 10px;
  }

  header .line-address .social-icon {
    display: none;
  }

  header .header-desktop {
    display: none;
  }

  header .mobile-header {
    display: block;
  }

  header .mobile-header .mobile-header-container .side-bar-box .dropdown {
    position: relative;
  }

  header .mobile-header .mobile-header-container .side-bar-box .dropdown-menu {
    position: absolute;
    list-style: none;
    top: 100%;
    left: 0;
    box-shadow: 0 0.5vw 1vw rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background: var(--red);
    color: black;
    padding: 1vw 0.5vw;
    display: none;
    flex-direction: column;
    gap: 1vw;
    z-index: 10;
    min-width: 12vw;
  }

  header
    .mobile-header
    .mobile-header-container
    .side-bar-box
    .dropdown:hover
    .dropdown-menu {
    display: flex;
    font-size: 1vw;
  }

  header .mobile-header .mobile-header-container .side-bar-box .dropdown i {
    color: white;
  }

  header .mobile-header .mobile-header-container {
    padding: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #fff;
  }

  header .mobile-header .mobile-header-container .logo {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .mobile-header .mobile-header-container .logo a {
    width: 40%;
  }

  header .mobile-header .mobile_toggle {
    width: 40px;
    height: 40px;
    position: absolute;
    display: flex;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50px;
    flex-direction: column;
    align-items: flex-end;
    padding: 10px;
    transition: all 0.4s;
    background: white;
    box-shadow: -1px 1px 3px #00000030;
    z-index: 99;
  }

  header .toggle_active .mobile_toggle {
    right: 65%;
  }

  header .mobile-header hr {
    margin: 2px 0;
    width: 20px;
    height: 3px;
    border: 0;
    background: black;
    transition: 0.25s;
  }

  header .mobile-header hr:last-child {
    width: 100%;
  }

  header .mobile-header .close_toggle hr:first-child {
    transform: rotate(-40deg) translate(-5px, 5px);
    width: 20px;
  }

  header .mobile-header .close_toggle hr:nth-child(2) {
    opacity: 0;
  }

  header .mobile-header .close_toggle hr:last-child {
    width: 20px;
    transform: rotate(40deg) translate(-4px, -4px);
  }

  header .mobile-header .mobile_blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #00000060;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 1;
    visibility: hidden;
    z-index: 50;
    transition: 0.25s;
  }

  header .toggle_active .mobile_blur {
    opacity: 1;
    visibility: visible;
  }

  .mobile-header .mobile-header-container .side-bar-box {
    position: fixed;
    background: var(--red);
    width: 70%;
    z-index: 90;
    top: 0;
    padding: 20% 10%;
    right: 0;
    transform: translateX(150%);
    display: flex;
    height: 100%;
    transition: all 400ms;
    flex-direction: column;
    gap: 40px;
  }

  header .toggle_active .mobile-header-container .side-bar-box {
    transform: translateX(0);
  }

  header .mobile-header .mobile-header-container .side-bar-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  header .mobile-header .mobile-header-container .side-bar-box ul a {
    color: white;
    font-weight: 600;
    font-size: 15px;
  }

  header .mobile-header .mobile-header-container .button-header-mobile {
    display: flex;
    height: 25%;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
  }

  header .mobile-header .mobile-header-container .button-header-mobile a {
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  header .mobile-header .mobile-header-container .button-header-mobile i {
    font-size: 20px;
    color: var(--red);
  }
}
main {
  padding-top: var(--header-height, 0px);
}
/* Footer */

footer {
  background-color: var(--red);
  background-blend-mode: multiply;
  background-image: url("../media/jpg/fondo.jpg");
}

footer .footer-container {
  display: grid;
  padding: 8% 5% 5% 8%;
  grid-template-columns: 1fr 1fr 1fr 2fr;
  grid-template-rows: 1fr 10%;
  row-gap: 0px;
}

.footer-container .contact-ctn {
  display: flex;
  gap: 30px;
  flex-direction: column;
}

.footer-container .contact-ctn h3 {
  color: white;
  font-size: 45px;
  font-weight: 700;
  line-height: 1;
}

.footer-container .contact-ctn ul {
  margin-left: 5%;
}

.footer-container .contact-ctn ul li {
  color: white;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer-container .contact-ctn ul li a:hover {
  color: black;
}

.footer-container .contact-ctn .social-icon {
  display: flex;
  gap: 10px;
}

.footer-container .contact-ctn .social-icon a {
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 30px;
  background: white;
}

.footer-container .contact-ctn .social-icon a:hover {
  background: black;
  font-weight: 500;
}

.footer-container .contact-ctn .social-icon a:hover i {
  color: white;
}

.footer-container .contact-ctn .social-icon i {
  color: var(--red);
  font-size: 20px;
}

.footer-container .opening-hours {
  display: flex;
  justify-self: center;
  flex-direction: column;
  gap: 30px;
}

.footer-container .opening-hours h3 {
  font-size: 40px;
  color: white;
  font-weight: 700;
  line-height: 1;
}

.footer-container .opening-hours ul {
  list-style: none;
}

.footer-container .opening-hours ul li p {
  color: white;
}

.footer-container .footer-menu {
  justify-self: center;
}

.footer-container .footer-menu ul {
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 15px;
  color: white;
}

.footer-container .footer-menu ul li a {
  font-size: 20px;
}

.footer-container .footer-menu ul li a:hover {
  color: black;
  font-weight: 500;
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;    
  height: 50px;
  background-color: #000;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 999;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


#backToTop:hover {
  background-color: #333;
}

#call-Button {
  display: flex;
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;    
  height: 50px;
  background-color: #000;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  z-index: 999;
  align-items: center;
  justify-content: center;
}

#call-Button:hover {
  background-color: #333;
}



.privacy-ctn {
  display: flex;
  flex-direction: column;
  padding: 0% 0% 5% 8%;
}



.privacy-ctn a {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.privacy-ctn a:hover {
  color: black;
  font-weight: 600;
}

.separador-servicios {
  display: flex;
  gap: 8%;
  padding-top: 15px;
}

footer .created-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: black;
}

footer .created-box p {
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 600;
}

footer .created-box a {
  color: white;
  font-weight: 600;
}

footer .created-box a:hover {
  color: var(--red);
  font-weight: 600;
}






.footer-container h3, 
.footer-container h3 a {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: capitalize !important; /* Solo primera letra en Mayúscula */
    text-decoration: none !important;
    margin-top: 0 !important; /* Elimina desniveles */
    margin-bottom: 25px !important;
    display: block;
}


.logos-row a {
  display: inline-flex;   /* no ocupa todo el ancho */
  align-items: center;
  justify-content: center;
  width: auto;            /* evita que se estire */
}

  /* Logo 3 abajo centrado */
  .logo-3 {
  width: 140px;
  height: auto;
  display: block;
}



.logo-3-color {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}

.logos-row img {
  width: auto;
}



  /* Logo 1 y 2 arriba */
  .logo-1,
  .logo-2 {
    width: 270px;
    max-width: 270px;
    
  }





/* =========================================
   RESPONSIVE (MÓVILES Y TABLETS PEQUEÑAS)
   ========================================= */
@media (max-width: 921px) {
    
    /* 1. Apilar las columnas principales una debajo de otra */
    .footer-main-columns {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px; /* Espacio entre Contact, Opening Hours, Home y Services */
    }

    /* 2. Forzar a que cada bloque ocupe todo el ancho en el celular */
    .contact-ctn,
    .opening-hours,
    .footer-menu {
        width: 100% !important;
        min-width: 100% !important;
        padding-right: 0 !important;
        text-align: center; /* Asegura que el texto esté centrado */
    }

    /* 3. Centrar los iconos de redes sociales y los logotipos */
    .social-icon {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .logos-row {
        justify-content: center;
        margin-top: 10px !important;
    }

    /* 4. Apilar las dos listas de Servicios (Mansory y Kitchen) */
    .separador-servicios {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    /* 5. Quitar el margen superior de la segunda lista de servicios en móvil */
    .segunda-col-servicios {
        margin-top: 0 !important;
    }

    /* 6. Centrar los enlaces legales del fondo (Privacy Policy, etc.) */
    .privacy-ctn {
        margin-top: 30px;
        padding-top: 20px;
    }

    .privacy-links {
        justify-content: center;
        flex-direction: column; /* Apila los links si la pantalla es muy angosta */
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 996px) {
  footer .footer-container {
    grid-template-columns: 100%;
    justify-items: center;
    gap: 30px;
    align-items: center;
  }

  .privacy-logos{
    justify-content: center;
    width: 140px;
  }
  
  .privacy-ctn {
    align-items: anchor-center; }
   

  
  .logo-2,
  .logo-3 {
    width: 180px;
  }


  /* Logo 1 y 2 arriba */
  .logo-1,
  .logo-2 {
    width: 270px;
    max-width: 270px;
    
  }

  /* Logo 3 abajo centrado */
  .logo-3 {
  width: 211px;
  height: auto;
  display: block;
}

  



  .footer-container .contact-ctn ul {
    text-align: center;
    list-style: none;
  }

  .footer-container .social-icon {
    justify-content: center;
    align-items: center;
  }

  .footer-container .opening-hours {
    height: 100%;
    justify-content: center;
  }

  .footer-container .opening-hours ul {
    text-align: center;
  }

  .footer-container .footer-menu ul {
    text-align: center;
  }

  .footer-container .request-ctn .form-ctn {
    grid-template-columns: 100%;
    grid-template-rows: auto;
  }

  .footer-container .request-ctn {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: inherit;
    gap: 30px;
  }

  .footer-container .request-ctn .form-ctn #message {
    grid-column: auto;
    grid-row: auto;
  }

  .footer-container .privacy-ctn {
    display: flex;
    text-align: center;
    flex-direction: column;
  }

  footer .created-box p {
    color: white;
    flex-direction: column;
    font-weight: 600;
    text-align: center;
  }

  footer .created-box p span {
    display: none;
  }
}

/* Breadcrumb */

.breadcrumb-section {
  padding: 2vw 2vw 1vw 10vw;
}

.breadcrumb-locat {
  padding: 2vw 2vw 0 2vw;
}

.breadcrumb-style {
  list-style: none;
  display: flex;
  border-radius: 5px;
}

.breadcrumb-style li {
  list-style: none;
  margin: 0 5px;
}

.breadcrumb-style li a {
  text-decoration: none;
  color: var(--red);
}

.breadcrumb-style li::after {
  content: " » ";
  margin-left: 5px;
  color: #888;
}

.breadcrumb-style li:last-child::after {
  content: "";
}

.breadcrumb-style li.active-style {
  font-weight: 600;
  color: #555;
  list-style: none;
  margin: 0 5px;
}

@media (max-width: 768px) {
  .breadcrumb-style {
    font-size: 14px;
    justify-content: left;
  }
}

@media (max-width: 992px) {
  .breadcrumb-style {
    font-size: 16px;
    padding: 6vw 10vw 0 0;
    text-align: left;
    flex-wrap: wrap;
  }

  .breadcrumb-style li {
    margin-bottom: 5px;
    padding: 0;
  }

  .breadcrumb-style li.active-style {
    min-width: fit-content;
  }
}



@media (max-width: 996px) { 
.banner-about-section .banner-about-container .banner-title span {
    font-size: 70px;    }  
    }


@media (max-width: 768px) {
    .banner-cta {
        padding: 14px 24px;
        font-size: 1rem;
        width: 90%;
        max-width: 350px;
    }
}