@media (min-width: 1200px){
	.container {
		max-width: 1240px;
	}
}
@media (max-width: 1200px){
	.menu ul li a {
		padding: 7px 16px !important;
	}
	.hero-caption h2 {
		font-size: 50px;
	}
	.hero-caption {
		padding-top: 50px;
		padding-bottom: 50px;
	}
}
@media (min-width: 992px){
	.menu ul{
		display: block !important;
	}
}
@media (max-width: 991px){
	.header {
		padding: 10px 0px;
	}
	.navbar {
		padding: 0;
	}
	.mobile-menu {
		display: block;
	}
	.mobile-menu {
		overflow: hidden;
		float: right;
		line-height: 1;
		border: 2px solid #000;
		color: #000;
		padding: 6px 10px;
		cursor: pointer;
		display: block;
	}
	.menu {
		text-align: left;
	}
	.menu ul {
		background: #000;
		margin-top: 10px;
		padding-bottom: 4px;
		display: none;
	}
	.menu ul li {
		display: inherit;
	}
	.menu ul li a {
		padding: 6px 18px;
		width: 100%;
	}
	.menu {
		width: 100%;
		margin-right: 0px;
	}
	.menu ul li a {
		color: #fff;
	}
	.drak .mobile-menu {
		color: #fff;
		border: 2px solid #fff;
	}
	/* Ajuste de compensación para hero en móviles/tablet */
	.hero-area { padding-top: 55px; }
	#home { scroll-margin-top: 110px; }
}
@media (max-width: 767px){
	.about-content h2 {
		font-size: 30px;
	}
	.hero-image .hero-shap-img img {
		width: 66%;
	}
}
@media (max-width: 576px){
	.hero-caption h2 {
		font-size: 35px;
	}
	.section-headding h2 {
		font-size: 30px;
	}
	.testimonial-item .content {
		overflow: hidden;
		width: 100%;
		padding-top: 20px;
	}
	/* Ajuste extra en móviles pequeños */
	.hero-area { padding-top: 55px; }
	#home { scroll-margin-top: 100px; }
}
@media (max-width: 360px){
	.hero-image .hero-shap-img img {
		width: 66%;
	}
	.hero-caption h2 {
		font-size: 30px;
	}
	.about-content h2 {
		font-size: 28px;
	}
	.section-headding h2 {
		font-size: 28px;
	}
}
/* Estilos para los carruseles */
.carousel {
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.carousel-item {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;

  width: 220px;
  height: 55%;

  background: #fedf0a;

  clip-path: polygon(
    0 0,
    100% 0,
    calc(100% - 10px) 10px,
    10px 10px,
    10px calc(100% - 10px),
    0 100%
  );

  transition:
    width 0.35s ease,
    height 0.35s ease;

  z-index: 2;
}

.carousel-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;

  width: 220px;
  height: 55%;

  background: #fedf0a;

  clip-path: polygon(
    100% 100%,
    0 100%,
    10px calc(100% - 10px),
    calc(100% - 10px) calc(100% - 10px),
    calc(100% - 10px) 10px,
    100% 0
  );

  transition:
    width 0.35s ease,
    height 0.35s ease;

  z-index: 2;
}

.carousel-item:hover::before,
.carousel-item:hover::after {
  width: 280px;
  height: 65%;
}

@media (max-width: 800px) {
  .carousel-item::before,
  .carousel-item::after {
    display: none;
  }
}


.carousel-item:hover img {
    transform: scale(1.03);
}

/* Estilos para los controles del carrusel */
.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.3) !important; 
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    border: none; 
    margin-right: 5%; 
	margin-left: 5%; 
}
/* Eliminamos los estilos por defecto de Bootstrap */
.carousel-control-prev:focus,
.carousel-control-next:focus,
.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: rgba(0, 0, 0, 0.5) !important;
    outline: none; 
}
/* Posicionamiento específico para cada botón */
.carousel-control-prev {
    left: 15px;
    right: auto; 
}
.carousel-control-next {
    right: 15px;
    left: auto; 
}
/* Estilo para los íconos dentro de los botones */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
    background-size: 100%;
    background-color: transparent; 
}


/* Estilos para las pestañas */
.nav-tabs {
    border: none;
    margin: 0 auto 30px;
    justify-content: center;
    background: #000; 
    padding: 5px;
    border-radius: 50px;
    display: flex;
    width: auto;
}
.nav-tabs .nav-item {
    margin: 0 2px;
}
.nav-tabs .nav-link {
    border: 2px solid #fff; 
    color: #fff; 
    font-weight: 600;
    padding: 8px 20px;
    margin: 0;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: transparent;
}
.nav-tabs .nav-link:hover {
    color: #000; 
    background: #fff; 
    transform: none;
    box-shadow: none;
}
.nav-tabs .nav-link.active {
    color: #000; 
    background: #fedf0a; 
    border-color: #fedf0a; 
    box-shadow: none;
}
/* Ajustes responsivos */
@media (max-width: 768px) {
	.carousel-item img {
        height: 350px;
    }
    .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        padding: 5px;
    }
    
    .nav-tabs .nav-item {
        margin: 3px;
        flex: 1 0 auto;
        min-width: 100px;
    }
    
    .nav-tabs .nav-link {
        padding: 6px 12px;
        font-size: 14px;
        text-align: center;
    }
	
}

