/* 
  LogoFacilito - Custom CSS
  This file contains custom styling for the LogoFacilito landing page
*/

/* ===== GENERAL STYLES ===== */
:root {
  --primary-color: #f3324c;
  --secondary-color: #2c2c2c;
  --accent-color: #ff9d4d;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --gray-color: #525252;
  --success-color: #28a745;
  --border-radius: 18px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s ease;
  --light-grey: #f4f5f6;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-color);
  overflow-x: hidden;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

a {
  text-decoration: none !important;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

/* BOTONES */
.lf-btn {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position:relative;
  overflow:hidden;
  font-size: 1rem;
  border-radius: 0.9rem;
  transition: 0.4s;
  padding-block: 0.45rem;
}

.lf-btn.btn-white {
  background-color: #fff;
  border: 1px solid #fff;
}

.lf-btn.btn-white:hover {
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.lf-btn.btn-dark {
  background-color: #000;
  border: 1px solid #000;
  color: white;
}

.lf-btn.btn-dark:hover {
  background-color: #181818;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}

.package-button {
  border: 2px solid;
}

.boton-masProyectos {
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 12px;
    padding: 10px 20px;
    font-size: 16px;
    font-family: inherit;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.boton-masProyectos:hover {
    background-color: black;
    color: white;
}


.text-gray {
  color: var(--gray-color)
}

.bg-black {
  background-color: #000;
}

.bg-grey {
  background-color: #f4f5f6;
}

.button-links {
  font-size: 1.5rem !important;
  cursor: pointer;
}

.button-links:hover {
  text-decoration: underline;
}

.logo-header {
  height: 2.75rem;
}

.logo-footer {
  height: 3.75rem;
}

.logo-paquetes {
  height: 5.5rem;
}

.degrade-text {
  background: -webkit-linear-gradient(90deg,rgb(161, 161, 161) 0%, rgba(255, 255, 255, 1) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  transition: var(--transition);
}

.myBtn {
  font-weight: 400;
  background-color: white;
  transition: var(--transition);
  padding: 10px 6px !important;
}

.myBtn:hover {
  background-color: #00e7a2;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* HERO SECTION  */
.my-hero{
  width: 100%;
  display: flex;
  position: relative;
  margin-bottom: 9rem;
}

.vertical-mask {
  display: none;
}

.mask {
  margin-top: 0;
  margin-bottom: 3%;
  width: 100vw;
  height: 98vh;
  overflow: hidden;
  position: relative;
}

.masked-img {
  position: absolute;
  top: 4rem; 
  left: -25vw;
  width: auto;
  height: 63.5%;
  transition: transform 1.5s ease, opacity 1.5s ease;
  opacity: 1;
  transform: scale(1.2);
}

.masked-img.scaling {
    transform: scale(1);
    opacity: 1;
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 25 / 9;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero_content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  padding: 5% 5% 10%;
  display: flex;
  align-items: center;
  z-index: 3;
}

.hero_content h1 {
  font-size: clamp(3.5rem, 3.9vw, 4.2rem);
  line-height: 4rem;
  margin: 0;
  font-weight: 600;
  color:#fff;
  border-radius: 20px;
}

.hero_content h6 {
  font-weight: 400;
  color:#fff;
  font-size: 1.35rem;
  margin-block: 2.5rem;
}

.hero-more-projects {
  position: relative ;
  z-index: 3;
  bottom: clamp(7.5%, 8.5%, 9%);
}

.inside-swipper {
  border-radius: 1.11rem;
  overflow: hidden;
  background-color: white;
  box-shadow: 6px 12px 20px 1px rgba(0,0,0,0.20);
}

.inside-swipper.selected img {
  scale: 0.975 0.96;
}

.mySwiper .swiper-slide img {
  scale: 1;
  transition: 0.5s;
  border-radius: calc(0.95rem);
  width: 100%;
  aspect-ratio: 16/9;
}

.mySwiper .swiper-slide:hover {
  cursor: pointer;
}

.mySwiper .swiper-slide:hover img {
  scale: 0.985 0.975;
}

.swiper-button-prev, .swiper-button-next {
  color: rgb(117, 117, 117) !important;
  margin-inline: -0.5rem;
}

.swiper-button-prev::after, .swiper-button-next::after {
  font-size: 25px !important;
}

.swiper-pagination-bullet-active {
  background-color: #000 !important;
}

/* Desenfoque INICIO */
.gradient-blur {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  backdrop-filter: blur(100px);
  mask: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 15% , rgba(0, 0, 0, .85) 35%, rgba(0,0,0,1) 100%);
  background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 54%, rgba(237, 221, 83, 0) 59%);
  background-color: #000000ab;
  display: flex;
  flex-direction: column;
  justify-content: start;
  pointer-events: none;
}
/* Desenfoque FIN */

.myOtherButton {
  margin-top: 3rem;
  cursor: pointer;
  color: white;
  letter-spacing: 2px;
  border: none;
  border-radius: 30px;
  width: 100%;
  height: 75px;
  font-size: 2rem;
}

.inverted-radius {
  background: var(--primary-color);
  border-radius: 1rem;
  padding-block: 0.6rem;
  box-shadow: 6px 12px 24px 1px rgba(0,0,0,0.33)
}

.client-text h1 {
  font-size: 2.5rem;
}

.client-text h6 {
  font-size: 1rem;
}


.big-text {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 4rem;
}

.section-title {
    font-weight: 600;
    margin-bottom: 2.25rem;
    position: relative;
    display: inline-block;
    font-size: 3rem;
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: white;
  box-shadow: var(--box-shadow);
}

.navbar {
  padding: 15px 0;
  transition: background-color 0.4s ease, padding 0.4s ease;
}

.navbar.scrolled-vaq {
    padding: 4px 0 5px 0 !important;
}

.navbar.scrolled-vaq img {
  scale: 0.9;
}

.logo-text {
  font-weight: 700;
  font-size: 1.5rem;
  color: white;
}

.nav-link {
  font-weight: 400;
  padding: 0.4rem 1.75rem !important;
  color: white !important;
}

.nav-link.active{
  background-color: var(--gray-color);
  border-radius: 1rem;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section h1 {
  font-size: 6.5rem;
  font-weight: 600;
  line-height: 1.1;
  color: var(--light-color);
}

.hero-text-div {
  z-index: 2; 
  position: absolute; 
  margin: 8% 10%
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: white;
  padding: 80px 0;
}

.service-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: var(--box-shadow);
  height: 100%;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

/* ===== PACKAGES SECTION ===== */
.icons-paq {
  height: 36px;
  max-width: 45px;
  margin-right: 10px;
  margin-top: -4px;
}

.icons-paq.medium {
  height: 48px;
}

.packages-section {
  background-color: white;
  padding: 80px 0;
}

.package-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  padding: 40px 30px 40px 30px;
  height: 100%;
  position: relative;
  transition: var(--transition);
  max-width: 350px;
}

.package-card.first {
  max-width: 550px;
}

.package-card.first:hover {
  transform: none;
  background-color: var(--light-color);
  color: inherit;
}

.package-features.first li{
  padding: 2px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.329);
  height: 38px;
}

.package-card:hover {
  transform: scale(1.04) translateY(-10px);
  background-color: #000;
  color: white;
}

.package-card:hover li {
  border-bottom: 2px solid rgb(109, 109, 109);
}

.package-card.first:hover li {
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.package-features:hover span{
  color: 2px solid rgb(160, 160, 160);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-badge {
  position: absolute;
  top: -15px;
  right: 30px;
  background-color: #000;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
}

.package-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.package-price {
  font-size: 2.5rem;
  font-weight: 600;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.package-features li{
  padding: 6px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
  height: 38px;
  text-wrap: nowrap;
  overflow: hidden;
}

.package-note {
  padding-inline: 20px;
  font-size: 0.85rem;
  color: var(--gray-color);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  background-color: white;
  padding: 0px 0 80px 0;
}

.portfolio-item {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  margin-bottom: 30px;
}

.portfolio-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: var(--transition);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-overlay h4 {
  color: white;
  margin-bottom: 15px;
}

/* ===== TESTIMONIALS SECTION ===== */

.testimonial-card {
  background-color: var(--dark-color);
  border-radius: var(--border-radius);
  padding-inline: 30px;
  padding-top: 5rem;
  padding-bottom: 3rem;
  box-shadow: var(--box-shadow);
  height: 300px;
  /* clip-path: polygon(60% 0%, 60% 30%, 100% 30%, 100% 100%, 0 100%, 0% 60%, 0 0); */
  clip-path: polygon(20% 0%, 25% 10%, 100% 10%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
}

.testimonial-rating {
  color: #ffc107;
  margin-bottom: 20px;
}

.testimonial-content {
  margin-bottom: 20px;
  color: #cfcfcf;
}

.testimonial-author {
  display: flex;
  align-items: center;
  color: var(--light-color);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-author h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.testimonial-author p {
  margin-bottom: 0;
  color: var(--light-color);
  font-size: 1rem;
}

/* ===== AGENCY SECTION ===== */
.agency-section {
  background-color: white;
  padding: 80px 0;
}

.agency-features {
  margin-top: 30px;
}

.agency-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.agency-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* .agency-section h3{
  font-size: 
} */

/* ===== CTA SECTION ===== */
.cta-section {
  background-color: var(--secondary-color);
  color: white;
  padding: 100px 0;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/placeholder.svg?height=800&width=1200");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  color: white;
}

.cta-section .section-title::after {
  background-color: white;
}

.promo-badge .badge {
  font-size: 1rem;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--light-color);
    color: rgb(17, 17, 17);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgb(17, 17, 17);
}

.footer-links {
    list-style: none;
    padding: 0;
    font-size: 0.9rem;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(39, 39, 39, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
  width: 1.5rem;
  height: 1.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 18px;
}

.instagram:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: white;
}

.tiktok:hover {
  color: white;
  background-color: #000;
}

.youtube:hover {
  color: white;
  background-color: #ee0f0f;
}

.linkedin:hover {
  color: white;
  background-color: #3a72eb;
}


.footer-divider {
    margin: 40px 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.copyright {
    color: var(--dark-color);
    font-size: 0.9rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    margin-bottom: 0;
}

.footer-legal a {
    color: var(--dark-color);
    font-size: 0.9rem;
}

.footer-legal a:hover {
  color: var(--primary-color);
}

.img-top-separation {
  margin-top: -23rem;
}

.img-bottom-separation {
  margin-bottom: 22rem;
}

.nav-item {
  font-size: 1rem;
}

.hero-image {
  background-image:url('../img/home/Banner-Portafolio-2264x1080.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}



/* Estilo animación para el navbar */
.wrapper-nav-anim{
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #000;
  clip-path: circle(25px at calc(100% - 45px) 25px);
  transition: all 0.3s ease-in-out;
}

#active:checked ~ .wrapper-nav-anim{
  clip-path: circle(75%);
}

.menu-btn{
  position: absolute;
  z-index: 2;
  right: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

#active:checked ~ .menu-btn{
  color: #fff;
}

#active:checked ~ .menu-btn i:before{
  content: "\f00d";
}

.wrapper-nav-anim ul{
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  list-style: none;
  text-align: center;
}

.wrapper-nav-anim ul li{
  margin: 5px 0;
}

.wrapper-nav-anim ul li a{
  color: none;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 5px 30px;
  color: #fff;
  border-radius: 24px;
  background: #000;
  position: relative;
  line-height: 50px;
  transition: all 0.3s ease;
}

.wrapper-nav-anim ul li a:after{
  position: absolute;
  content: "";
  background: #fff;
  background: linear-gradient(#d6d6d6, #a5a5a5, #5c5c5c);
  width: 104%;
  height: 110%;
  left: -2%;
  top: -5%; /* if the font is 'Oswald'*/
  border-radius: 24px;
  transform: scaleY(0);
  z-index: -1;
  animation: rotate 1.5s linear infinite;
  transition: transform 0.3s ease;
}
.wrapper-nav-anim ul li a:hover:after{
  transform: scaleY(1);
}
.wrapper-nav-anim ul li a:hover{
  color: #fff;
}

input[type="checkbox"]{
  display: none;
}

.content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  text-align: center;
  width: 100%;
  color: #202020;
}
.content .title{
  font-size: 40px;
  font-weight: 700;
}
.content p{
  font-size: 35px;
  font-weight: 600;
}


/* Cards animadas para servicios */
.myPackageSwiper {
  cursor: grab;
}

.myPackageSwiper:target {
  cursor: grabbing;
}
  
.card {
  position: relative;
  width: 320px !important;
  height: 330px;
  margin: 20px 0.5rem;
  background: #fff;
  border-radius: 16px !important;
  display: inline-block;
  overflow: hidden;
}
  
.card .face{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
  
.card .face.face1{
  box-sizing: border-box;
}

.card .face.face1 img{
  aspect-ratio: 1/1.1;
}

.card .face.face1 img:hover{
  cursor: default;
  scale: 1;
}

.card .face.face2{
  background-color: black;
  transition: 0.5s;
  height: 60px;
  clip-path: polygon(20% 0%, 20% 0%, 100% 0%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
  border-radius: 15px;
  padding-top: 0rem;
}

.card:hover .face.face2{
  cursor: default;
  height: 50%;
  border-radius: 0 0 15px 15px;
  clip-path: polygon(25% 0%, 30% 10%, 100% 10%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
  padding-top: 2rem;
  border-radius: 1rem;
}

.card .face.face2:before{
  content:'';
  position: absolute;
  top:0;
  left:0;
  width: 50%;
  height: 100%;
  border-radius: 15px 0 0 15px;
}

.card .face.face2 p{
  transition: 0.5s;
  display: none;
}

.card .face.face2 h2{
  margin: 0;
  padding: 0;
  font-size: 1.25em;
  font-weight: 400;
  color: #fff;
  transition: 0.5s;
  text-shadow: 0 2px 5px rgba(0,0,0, .2);
}

.card:hover .face.face2 p{
  display: block;
  margin-bottom: 0;
  font-size: 0.95rem;
}

  .portfolio-wrapper {
    clip-path: polygon(20% 0%, 23% 5%, 100% 5%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
  }

.box-portafolio {
  cursor: pointer;
  width: 25em;
  height: auto;
  background-color: #f4f5f6;
  border-radius: 30px;
  padding: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  transition: all 0.5s;
  overflow: hidden;
}

  .box-portafolio:hover {
    scale: 103%;
    transition: all 0.5s;
    background-color: white;
    box-shadow: 1px 10px 42px -27px rgba(0,0,0,0.67);
    -webkit-box-shadow: 1px 10px 42px -27px rgba(0,0,0,0.67);
    -moz-box-shadow: 1px 10px 42px -27px rgba(0,0,0,0.67);
  }

  .box-portafolio:hover img {
    height: 110%;
    transition: all 0.5s;
  }

  .box-portafolio-imagen {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 7.5px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .box-portafolio-imagen img {
    height: 100%;
    transition: all 0.5s;
  }

  .w-85 {
    width: 85%;
  }

  .post-image-mask {
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 25/9;
  }

  .post-image {
    width: 100%;
    height: auto;
    display: block;
  }

  .galery-image-mask {
    overflow: hidden;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 7/9;
  }

  .galery-image-mask.horizontal {
    aspect-ratio: 24/9;
  }

#mobile-hero {
  display: none;
}
  

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1650px) {
  .video-wrapper {
    aspect-ratio: 20/9;
    margin-top: 18px;
  }

  .hero_content h1 {
    font-size: 3rem;
    line-height: 2.9rem;
  }

  .hero_content h6 {
    font-size: 1.2rem;
    margin-block: 1.8rem;
  }

  .inverted-radius h1{
    font-size: 2.25rem;
  }

  .card:hover .face.face2{
    height: 55%;
    padding-top: 1.5rem;
  }
}


@media (max-width: 1400px) {
  .w-85 {
    width: 90%;
  }

  .video-wrapper {
    aspect-ratio: 21/9;
    margin-top: 18px;
  }

  .mask {
    height: 95vh;
  }

  .masked-img {
    height: 59%;
    top: 3rem;
    left: -20vw;
  }

  .gradient-blur {
    aspect-ratio: 11/9;
  }

  .hero-more-projects {
    bottom: clamp(7.5%, 7.5%, 9%);
  }

  .hero_content {
    width: 55%;
  }

  .hero_content h1 {
    font-size: 2.9rem;
    line-height: 2.75rem;
  }

  .hero_content h6 {
    font-size: 1.1rem;
    margin-block: 1.75rem;
  }

  .client-text h1 {
    font-size: 1.75rem;
  }

  .client-text h6 {
    font-size: .9rem;
  }

  .mySwiper .swiper-slide img {
    border-radius: calc(1rem - 1px);
  }

  .card{
    position: relative;
    min-width: 270px;
    height: 320px;
    margin: 20px 0.2rem;
  }

  .card .face.face2 h2{
    font-size: 1.1em;
  }

  .img-top-separation {
    margin-top: -18rem;
  }

  .img-bottom-separation {
    margin-bottom: 18rem;
  }

  .testimonial-card {
    clip-path: polygon(27% 0%, 35% 14%, 100% 14%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
    padding-top: 4.5rem;
    padding-bottom: 1rem;
    padding-inline: 20px;
  }

  .testimonial-avatar {
    width: 45px;
    height: 45px;
  }

  .testimonial-author h5 {
    font-size: 1.15rem;
    margin-bottom: 4px;
  }

  .main-headline {
    padding: 6% 5% 0% 5%;
  }

  .big-text {
    font-size: 3rem;
    line-height: 3.75rem;
  }

  .lf-btn {
    border-radius: 0.8rem;
  }
}

@media (max-width: 991.98px) {
  .w-85 {
    width: 100%;
  }

  .package-card {
    padding: 30px 20px 30px 20px;
  }

  .package-card.first {
    max-width: 360px;
  }

  .package-note {
    padding: 12px;
    font-size: 0.65rem;
  }

  .hero-section {
    padding: 120px 0 80px;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .package-card.featured {
    transform: scale(1);
  }

  .package-card.featured:hover {
    transform: translateY(-10px);
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .img-top-separation {
    margin-top: -11.5rem;
  }

  .img-bottom-separation {
    margin-bottom: 10rem;
  }
  
  .mask {
    display: none;
  }

  .vertical-mask {
    display: block;
    position: relative;
    width: 100vw;
    height: 60vh;
  }

  .vertical-mask img {
    position: absolute;
    height: 100%;
    right: -90rem;
  }

  .gradient-blur {
    width: 50%;
    backdrop-filter: blur(0.125rem);
    height: 50.5vh;
  }

  .hero_content {
    bottom: 23%;
    left: 5%;
    transform: translate(0%, -100%);
  }

  .hero_content h1 {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 3.25rem;
  }

  .client-text h1 {
    font-size: 2rem;
  }

  .hero-more-projects {
    width: 98%;
  }

  .client-text h1 {
    font-size: 1.65rem;
    line-height: 35px;
  }
  
}

@media (max-width: 767.98px) {
  #mobile-hero {
    display: block;
    margin-top: 60vh;
  }

  .icons-paq {
    height: 20px;
    max-width: 45px;
    margin-right: 8px;
  }

  .package-card.first {
    max-width: 300px;
  }

  .card{
    min-width: 90vw;
  };

  .navbar.scrolled-vaq {
    padding: 2px 0 !important;
  }
  
  .scrolled-btn {
    top: 3px;
  }

  .logo-header {
    height: 2.5rem;
  }

  .logo-footer {
    height: 2.75rem;
  }

  .hero-section {
    padding: 100px 0 60px;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .package-card.first {
    padding: 20px 10px 20px 5px;
  }

  .service-card,
  .package-card {
    margin-bottom: 20px;
    padding: 20px 24px 20px 24px;
    height: auto;
  }

  .package-card:hover {
    transform: scale(1.03) translateY(-5px);
  }

  .footer-legal {
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-card {
    padding-inline: 20px;
    padding-top: 5rem;
    padding-bottom: 1rem;
    clip-path: polygon(30% 0%, 40% 10%, 100% 10%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 0);
  }

  .post-image-mask {
    border-radius: 16px;
    aspect-ratio: 24/9;
  }

  .post-image-mask {
    aspect-ratio: 18/9;
  }

  .card {
    width: 290px !important;
    height: 300px;
    margin: 12px 0.25rem; 
  }

  .package-hicimos h5 {
    font-size: 1.1rem;;
  }

  .lf-btn.btn-white {
    border: 1px solid #000;
  }

  .menu-btn{
    top: 7px;
    height: 40px;
    width: 40px;
    line-height: 40px;
  }

  .package-features li{
    height: 32px;
    font-size: 0.9rem;
  }

  .inside-swipper {
    border-radius: 0.75rem;
  }

  .galery-image-mask {
    border-radius: 10px;
  }

  .galery-image-mask.horizontal {
    aspect-ratio: 18/9;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 1.8rem;
  }

  .btn-lg {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .package-title {
    font-size: 1.35rem;
  }

  .package-price {
    font-size: 1.7rem;
  }

  .footer-divider {
    margin: 20px 0;
    background-color: rgba(255, 255, 255, 0.1);
  }

  .section-title {
    font-size: 1.9rem;
  }

  .img-top-separation {
    margin-top: -5rem;
  }

  .img-bottom-separation {
    margin-bottom: 5rem;
  }

  .card {
    min-width: 250px;
    height: 300px;
    margin: 0px 0.25rem;
    border-radius: 15px;
  }

  .package-note {
    padding: 10px;
    font-size: 0.60rem;
  }

  .masked-img {
    left: -80vw
  }

  .gradient-blur {
    display: none;
  }

  .hero_content {
    bottom: 0;
    left: 0;
    padding-left: 12px;
    padding-block: 10px;
    width: 100vw;
    mask: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, .5) 15% , rgba(0, 0, 0, .65) 35%, rgba(0,0,0,1) 100%);
    background-color: #000;
  }

  .client-text h1 {
    font-size: 1.35rem;
    line-height: 25px;
  }

  .big-text {
    font-size: 2.5rem;
    line-height: 2.75rem;
  }

  .footer-legal {
    align-items: center;
  }

  .icons-paq {
    height: 18px;
    max-width: 24px;
    margin-right: 5px;
  }

  .logo-paquetes {
    height: 3rem;
  }

  .hero-more-projects {
    bottom: -100%;
    width: 100%;
    left: 0;
    padding: 0 20px;
  }

  .hero_more_projects h6 {
    font-size: 1.1rem;
  }

  .hero_more_projects h1 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .hero_more_projects a {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .box-portafolio {
    padding: 0 6px 0 6px;
    border-radius: 10px;
  }

  .box-portafolio-imagen {
    height: 50vw;
    border-radius: 12px;
    margin-bottom: 6px;
  }
  
  .portfolio-wrapper {
    clip-path: none;
  }

  .box-portafolio:hover {
    scale: 102%;
  }

  .galery-image-mask {
    border-radius: 8px;
  }

  .galery-image-mask.horizontal {
    aspect-ratio: 14/9;
  }
  
}


/* ------------ CAROUSEL  ------------ */
/* Testimonials Carousel Styling */
.testimonials-carousel .carousel-control-prev,
.testimonials-carousel .carousel-control-next {
    width: 5%;
    opacity: 1;
}

.testimonials-carousel .carousel-control-prev {
    left: -5rem;
}

.testimonials-carousel .carousel-control-next {
    right: -5rem;
}

.testimonials-carousel .carousel-control-prev-icon,
.testimonials-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
    background-size: 50% 50%;
}

/* For mobile devices */
@media (max-width: 767.98px) {
    .testimonials-carousel .carousel-control-prev {
        left: -15px;
    }
    
    .testimonials-carousel .carousel-control-next {
        right: -15px;
    }
    
    .testimonials-carousel .carousel-control-prev-icon,
    .testimonials-carousel .carousel-control-next-icon {
        width: 25px;
        height: 25px;
    }

    .testimonials-carousel {
      display: none;
    }
}


.go-corner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 32px;
  height: 32px;
  overflow: hidden;
  top: 0;
  right: 0;
  background-color: var(--dark-color);
  border-radius: 0 4px 0 32px;
}

.go-arrow {
  margin-top: -4px;
  margin-right: -4px;
  color: white;
  font-family: courier, sans;
}

.card1 {
  display: block;
  position: relative;
  max-width: 262px;
  background-color: transparent;
  border-radius: 16px;
  padding: 24px 24px;
  text-decoration: none;
  z-index: 0;
  overflow: hidden;

  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -16px;
    right: -16px;
    background: var(--dark-color);
    height: 32px;
    width: 32px;
    border-radius: 32px;
    transform: scale(1);
    transform-origin: 50% 50%;
    transition: transform 0.3s ease-out;
  }

  &:hover:before {
    transform: scale(21);
  }
}

.card1:hover {
  p {
    transition: all 0.3s ease-out;
    color: rgba(255, 255, 255, 0.8);
  }
  h3 {
    transition: all 0.3s ease-out;
    color: #ffffff;
  }
}


/* CONTENDOR REDONDEADO */

.contenedor {
  position: relative;
  background-color: white;
  width: 500px;
  height: 200px;
  border-radius: 20px;
}

/* Pseudoelemento para crear el recorte */
.contenedor::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 150px;
  width: 100%;
  height: 50px;
  background-color: #666;
  border-radius: 0 0 0 30%;
  border-bottom-left-radius: 20px
}

.contenedor::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 50px;
  right:0px;
  height: 60px;
  width: 25px;
  border-top-right-radius: 20px;
  box-shadow: 0 -25px 0 0 #666; /* This is where the magic happens! */
}
.contenedor>span::before {
  content: "";
  position: absolute;
  background-color: #fff;
  top: 0px;
  left:125px;
  height: 60px;
  width: 25px;
  border-top-right-radius: 25px;
  box-shadow: 0 -25px 0 0 #666; /* This is where the magic happens! */
}

