* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Atlan';
  background-color: #F5F5EB; 
}

/* ===== GARANTIZAR VISIBILIDAD INICIAL ===== */
.cont_1 .text,
.cont_2,
.cont_3,
.cont_4 h1,
.cont_5 .text h1,
.cont_6 {
    opacity: 1;
    visibility: visible;
}

/* ===== CONFIGURACIÓN PARA ANIMATE.CSS ===== */
.animate__animated {
    --animate-duration: 1s;
}

/* Para dispositivos que prefieren movimiento reducido */
@media (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation: none !important;
    opacity: 1 !important;
  }
}

/*------CONTENEDOR PRINCIPAL ----------------*/
.contenedor {
  width: 100%;
  position: relative;
}

/*------CONT_1 ----------------*/
.cont_1 {
  position: relative;
  width: 100%;
  height: 696px;
  overflow: hidden;
}

.cont_1 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.cont_1::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.cont_1 .text {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: 600px;
  width: 90%;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cont_1 .text h1 {
  font-family: 'Athene Voyage', serif;
  color: rgba(42,3,90,1.00);
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: right;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  padding: 0;
}

.cont_1 .text p {
  font-size: 20px;
  color: rgba(42,3,90,1.00);
  text-align: right;
  margin-bottom: 30px;
  margin-left: auto;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 500px;
}

.cont_1 .text a {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(0deg, rgb(40, 4, 84), rgb(66, 3, 142));
  border-radius: 30px;
  padding: 5px 32px;
  color: rgba(245, 245, 235, 1);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  float: right;
  clear: both;
}

.cont_1 .text a:hover {
  transform: scale(1.05);
  background: linear-gradient(0deg, rgb(50, 6, 100), rgb(76, 5, 160));
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/*------MEDIA QUERIES CONT_1 ----------------*/
@media screen and (max-width: 1124px) {
  .cont_1 {
    height: 600px;
  }
  .cont_1 .text h1 {
    font-size: 42px;
    color: rgba(245,245,235,1.00);
  }
  .cont_1 .text p {
    font-size: 18px;
    max-width: 450px;
    color: rgba(245,245,235,1.00);
  }
  .cont_1 .text a {
    padding: 10px 28px;
    font-size: 15px;
  }
  .cont_1::after {
    background: linear-gradient(270deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.1) 100%);
  }
}

@media screen and (max-width: 768px) {
  .cont_1 {
    height: 550px;
  }
  .cont_1 .text {
    right: 8%;
    max-width: 90%;
  }
  .cont_1 .text h1 {
    font-size: 36px;
    color: rgba(245,245,235,1.00);
  }
  .cont_1 .text p {
    font-size: 16px;
    max-width: 100%;
    color: rgba(245,245,235,1.00);
  }
  .cont_1::after {
    background: linear-gradient(270deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 70%, rgba(0,0,0,0.1) 100%);
  }
}

@media screen and (max-width: 600px) {
  .cont_1 {
    height: 500px;
  }
  .cont_1 .text {
    right: 5%;
    width: 90%;
    align-items: flex-end;
  }
  .cont_1 .text h1 {
    font-size: 28px;
    text-align: right;
    color: rgba(245,245,235,1.00);
  }
  .cont_1 .text p {
    font-size: 14px;
    margin-bottom: 20px;
    text-align: right;
    color: rgba(245,245,235,1.00);
  }
  .cont_1 .text a {
    padding: 8px 20px;
    font-size: 13px;
    float: none;
    margin-left: auto;
    margin-right: 0;
  }
}

@media screen and (max-width: 380px) {
  .cont_1 {
    height: 450px;
  }
  .cont_1 .text h1 {
    font-size: 24px;
  }

}

/*------CONT_2 ----------------*/
.cont_2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  margin: 80px auto;
  padding: 40px 20px;
  gap: 30px;
  background-color: #F5F5EB;
}

.cont_2 .text {
  flex: 1;
  max-width: 500px;
  color: rgba(42, 3, 90, 1);
}

.cont_2 .text h1 {
  font-family: 'Athene Voyage', serif;
  font-size: 32px;
  color: rgba(42, 3, 90, 1);
  margin-bottom: 15px;
  line-height: 1.2;
}

.cont_2 .text h2 {
  font-family: 'Athene Voyage', serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(41,3,86,1.00);
  line-height: 1.4;
}

.cont_2 .text p {
  font-family: 'Atlan', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(42, 3, 90, 0.9);
  margin-right: 8%;
  margin-bottom: 4px;
  text-align: justify;
}

.cont_2 .img h1 {
  font-family: 'Atlan', sans-serif;
  font-size: 16px;
  color: rgba(42,3,90,1.00);
  margin-top: 30px;
  letter-spacing: 1px;
}

.cont_2 .img {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 400px;
}

.cont_2 .img img {
  width: 100%;
  max-width: 260px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 30px -10px rgba(66, 3, 142, 0.3);
  border: 4px solid white;
  transition: transform 0.3s ease;
}

.cont_2 .img img:hover {
  transform: scale(1.02);
}

.cont_2 hr {
  width: 70%;
  height: 0.4px;
  background-color: rgba(169,169,169,1.00);
}

@media screen and (max-width: 900px) {
  .cont_2 {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: 40px 20px;
  }
  .cont_2 .text {
    max-width: 100%;
  }
  .cont_2 .text h1 {
    font-size: 36px;
  }
  .cont_2 .text h2 {
    font-size: 22px;
  }
  .cont_2 .text p {
    margin: 1px 6%;
    font-size: 15px;
    text-align: center;
  }
  .cont_2 .text hr {
    margin: 1px 6%;
  }
  .cont_2 .img {
    max-width: 100%;
  }
  .cont_2 .img img {
    max-width: 300px;
  }
  .cont_2 .img h1 {
    font-size: 15px;
  }
}

@media screen and (max-width: 600px) {
  .cont_2 {
    margin: 40px auto;
    padding: 20px 15px;
    gap: 30px;
  }
	
    .cont_2 hr{
		display: none;
	}
  .cont_2 .text h1 {
    font-size: 30px;
  }
  .cont_2 .text h2 {
    font-size: 20px;
  }
  .cont_2 .text p {
    margin: 1px 6%;
    font-size: 13px;
    line-height: 1.6;
    text-align: justify;
  }
  .cont_2 .img img {
    max-width: 230px;
  }
}

@media screen and (max-width: 380px) {
  .cont_2 .text h1 {
    font-size: 20px;
  }
  .cont_2 .text h2 {
    font-size: 15px;
  }
  .cont_2 .text p {
    font-size: 11px;
  }
  .cont_2 .img img {
    max-width: 180px;
  }
  .cont_2 .img h1 {
    font-size: 12px;
  }
}

/*-------cont_3---------*/
.cont_3 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 950px;
  margin: 80px auto;
  padding: 40px 20px;
  gap: 30px;
  background-color: #F5F5EB;
}

.cont_3 .img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 300px;
  order: 1;
}

.cont_3 .img img {
  width: 280px;
  max-width: 260px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 25px -10px rgba(66, 3, 142, 0.2);
  transition: transform 0.3s ease;
}

.cont_3 .img img:hover {
  transform: scale(1.02);
}

.cont_3 .text {
  flex: 1;
  max-width: 800px;
  color: rgba(42, 3, 90, 1);
  order: 2;
}

.cont_3 .text h1 {
  font-family: 'Athene Voyage', serif;
  font-size: 42px;
  color: rgba(42, 3, 90, 1);
  margin-bottom: 10px;
  line-height: 1.2;
}

.cont_3 .text h2 {
  font-family: 'Athene Voyage', serif;
  font-size: 23px;
  font-weight: 500;
  color: rgba(42, 3, 90, 1);
  margin-bottom: 20px;
  line-height: 1.4;
}

.cont_3 .text p {
  font-family: 'Atlan', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(42, 3, 90, 0.9);
  margin-bottom: 15px;
  text-align: justify;
  margin-right: 5%;
}

.cont_3 .text .frase {
  font-weight: 600;
  font-style: italic;
  margin-bottom: 25px;
}

.cont_3 .text a {
  display: inline-block;
  text-decoration: none;
  padding: 3px 18px;
  background: linear-gradient(0deg, rgb(40, 4, 84), rgb(66, 3, 142));
  box-shadow: 0 8px 20px -10px rgba(66, 3, 142, 0.5);
  border-radius: 40px;
  color: rgba(245, 245, 235, 1);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 10px;
}

.cont_3 .text a:hover {
  transform: translateY(-3px);
  background: linear-gradient(0deg, rgb(50, 6, 100), rgb(76, 5, 160));
  box-shadow: 0 15px 25px -8px rgba(66, 3, 142, 0.7);
}

@media screen and (max-width: 900px) {
  .cont_3 {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 40px 20px;
  }
  .cont_3 .img {
    order: 2;
    max-width: 100%;
    margin-top: 1%;
  }
  .cont_3 .text {
    order: 1;
    max-width: 100%;
  }
  .cont_3 .text h1 {
    font-size: 38px;
  }
  .cont_3 .text h2 {
    font-size: 26px;
  }
  .cont_3 .text p {
    margin: 0 5% 15px 5%;
    text-align: center;
  }
  .cont_3 .text a {
    margin: 10px auto 0 auto;
  }
  .cont_3 .img img {
    max-width: 300px;
  }
}

@media screen and (max-width: 600px) {
  .cont_3 {
    margin: 40px auto;
    padding: 30px 15px;
    gap: 30px;
  }
  .cont_3 .text h1 {
    font-size: 32px;
  }
  .cont_3 .text h2 {
    font-size: 22px;
    margin-bottom: 15px;
  }
  .cont_3 .text p {
    margin: 0 3% 12px 3%;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }
  .cont_3 .text a {
    padding: 10px 24px;
    font-size: 14px;
  }
  .cont_3 .img img {
    max-width: 250px;
  }
}

@media screen and (max-width: 380px) {
  .cont_3 .text h1 {
    font-size: 28px;
  }
  .cont_3 .text h2 {
    font-size: 20px;
  }
  .cont_3 .text p {
    font-size: 13px;
    margin: 0 2% 10px 2%;
  }
  .cont_3 .img img {
    max-width: 200px;
  }
}

/*-----cont_4-------*/
.cont_4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5eb 0%, #ece3d7 100%);
  padding: 60px 2%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
}

.cont_4::before {
  content: '';
    position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(85,54,44,0.09) 1%, transparent 70%);
  animation: rotate 30s linear infinite;
  pointer-events: none;
  z-index: 1;
}

.cont_4 h1 {
  font-family: 'Athene Voyage', serif;
  font-size: 32px;
  font-weight: 500;
  color: rgba(42, 3, 90, 1);
  margin-bottom: 15px;
  line-height: 1.2;
  text-align: center;
  max-width: 800px;
  width: 100%;
  position: relative;
  display: inline-block;
  z-index: 2;
}

.cont_4 h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(42, 3, 90, 0.5), transparent);
  border-radius: 3px;
}

.cont_4 > p {
  font-family: 'Atlan', sans-serif;
  font-size: 16px;
  color: rgba(42, 3, 90, 1);
  text-align: center;
  max-width: 600px;
  margin: 25px 0 40px;
  line-height: 1.6;
  width: 100%;
  z-index: 2;
  position: relative;
}

.cont_4 .img {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 15px;
  perspective: 1000px;
  z-index: 2;
  position: relative;
}

.cont_4 .img-item {
  position: relative;
  flex: 0 0 auto;
  width: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
}

.cont_4 .img-item:hover {
  transform: translateY(-10px) rotateY(5deg);
  z-index: 50;
}

.cont_4 .img-item img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  display: block;
  transition: all 0.4s ease;
  filter: drop-shadow(0 10px 15px rgba(42, 3, 90, 0.1));
}

.cont_4 .img-item:hover img {
  filter: drop-shadow(0 20px 25px rgba(42, 3, 90, 0.3));
}

.cont_4 .best-seller-badge {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, rgba(41, 3, 87, 1), #6B3FA0);
  color: white;
  font-family: 'Atlan', sans-serif;
  font-size: 8px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px 0 20px 0;
  letter-spacing: 0.5px;
  z-index: 30;
  text-transform: uppercase;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.cont_4 .img-item:first-child .best-seller-badge {
  background: linear-gradient(135deg, #6B3FA0, #FFD700);
  color: #2A0359;
}

.cont_4 .img-item:first-child:hover .best-seller-badge {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.cont_4 .img-item:first-child img {
  transform: scale(1.08);
  filter: drop-shadow(0 15px 20px rgba(42, 3, 90, 0.3));
}

.cont_4 .img-item:hover img {
  transform: scale(1.15);
}

.cont_4 a {
  display: inline-block;
  text-decoration: none;
  padding: 12px 35px;
  background: linear-gradient(0deg, rgb(40, 4, 84), rgb(66, 3, 142));
  border-radius: 50px;
  color: rgba(245, 245, 235, 1);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 40px auto 0;
  text-align: center;
  box-shadow: 0 10px 25px -10px rgba(66, 3, 142, 0.5);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.cont_4 a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.cont_4 a:hover::before {
  left: 100%;
}

.cont_4 a:hover {
  transform: translateY(-5px);
  background: linear-gradient(0deg, rgb(50, 6, 100), rgb(76, 5, 160));
  box-shadow: 0 20px 30px -8px rgba(66, 3, 142, 0.8);
}

@media screen and (max-width: 1020px) {
  .cont_4 h1 {
    font-size: 28px;
  }
  .cont_4 > p {
    font-size: 15px;
    width: 80%;
  }
  .cont_4 .img-item {
    width: 130px;
  }
}

@media screen and (max-width: 700px) {
  .cont_4 {
    padding: 40px 3%;
  }
  .cont_4 h1 {
    font-size: 24px;
  }
  .cont_4 > p {
    font-size: 14px;
    width: 90%;
    margin-bottom: 25px;
  }
  .cont_4 .img {
    gap: 8px;
  }
  .cont_4 .img-item {
    width: 100px;
  }
  .cont_4 .img-item img {
    max-height: 130px;
  }
  .cont_4 a {
    padding: 10px 25px;
    font-size: 14px;
    margin-top: 25px;
  }
}

@media screen and (max-width: 480px) {
  .cont_4 .img-item {
    width: 80px;
  }
  .cont_4 .best-seller-badge {
    font-size: 6px;
    padding: 3px 8px;
  }
}

/*-----cont_5-------*/
.cont_5 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 60px 5%;
  width: 100%;
  box-sizing: border-box;
  gap: 5%;
}

.cont_5 .img {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 1.5s ease-in-out infinite;
  filter: drop-shadow(0 10px 15px rgba(85,54,44,0.5));
  transition: transform 0.2s ease; 
}

.cont_5 .img img {
  width: 100%;
  max-width: 350px;
  height: auto;
  display: block;
}

.cont_5 .img img:hover {
    transform: scale(1.02) translateY(-8px);
    filter: drop-shadow(0 15px 20px rgba(85,54,44,0.3)); 
}

/* Animación de flotación */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.cont_5 .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  max-width: 500px;
}

.cont_5 .text h1 {
  font-size: 35px;
  font-family: 'Athene Voyage', serif;
  color: #2A0359;
  margin-bottom: 15px;
  line-height: 1.2;
  text-align: left;
}

.cont_5 .text p {
  font-family: 'Atlan', sans-serif;
  font-size: 18px;
  margin-bottom: 25px;
  color: #2A0359;
  text-align: left;
  line-height: 1.5;
}

.cont_5 a {
  display: inline-block;
  text-decoration: none;
  padding: 3px 30px;
  background: linear-gradient(0deg, rgb(40, 4, 84), rgb(66, 3, 142));
  border-radius: 50px;
  color: rgba(245, 245, 235, 1);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  box-shadow: 0 8px 20px -10px rgba(66, 3, 142, 0.5);
  white-space: nowrap;
}

.cont_5 a:hover {
  transform: translateY(-3px);
  background: linear-gradient(0deg, rgb(50, 6, 100), rgb(76, 5, 160));
  box-shadow: 0 15px 25px -8px rgba(66, 3, 142, 0.7);
}

@media screen and (max-width: 900px) {
  .cont_5 {
    gap: 4%;
    padding: 50px 5%;
  }
  .cont_5 .img img {
    max-width: 280px;
  }
  .cont_5 .text h1 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .cont_5 .text p {
    font-size: 15px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 700px) {
  .cont_5 {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 5%;
  }
  .cont_5 .img img {
    max-width: 250px;
  }
  .cont_5 .text {
    align-items: center;
    text-align: center;
  }
  .cont_5 .text h1 {
    text-align: center;
    font-size: 28px;
  }
  .cont_5 .text p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 400px) {
  .cont_5 {
    padding: 30px 5%;
    gap: 20px;
  }
  .cont_5 .img img {
    max-width: 200px;
  }
  .cont_5 .text h1 {
    font-size: 24px;
  }
  .cont_5 .text p {
    font-size: 12px;
  }
}

/*-----cont_6-------*/
.cont_6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5eb 0%, #ece3d7 100%);
  padding: 60px 20px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.cont_6::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(85,54,44,0.09) 1%, transparent 70%);
  animation: rotate 30s linear infinite;
  z-index: 1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.cont_6 h1 {
  font-family: 'Athene Voyage', serif;
  color: #2A0359;
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.cont_6 > p {
  font-family: 'Atlan', sans-serif;
  color: #2A0359;
  font-size: clamp(16px, 3vw, 20px);
  margin-bottom: 40px;
  text-align: center;
  max-width: 600px;
  position: relative;
  z-index: 2;
  line-height: 1.5;
  opacity: 0.9;
}

.social-follow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  z-index: 2;
  margin-top: 20px;
}

.section-title {
  font-family: 'Athene Voyage', serif;
  font-size: 20px;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
  color: #2A0359;
  text-align: center;
}

.section-title::before,
.section-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6B3FA0, #2A0359, #6B3FA0, transparent);
  transform: translateY(-50%);
  border-radius: 2px;
}

.section-title::before {
  left: -80px;
}

.section-title::after {
  right: -80px;
}

.social-handles {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
}

.handle-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 5px 20px;
  margin: 0px 10px;
  border-radius: 60px;
  box-shadow: 0 10px 25px -5px rgba(42, 3, 89, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(107, 63, 160, 0.1);
  position: relative;
  overflow: hidden;
}

.handle-item .fab {
  font-size: 18px;
  color: #2A0359;
  transition: all 0.3s ease;
  text-decoration: none;
}

.handle-item .socialmedia {
  font-family: 'Atlan', sans-serif;
  font-size: 15px;
  margin-left: 2%;
  font-weight: 500;
  color: #2A0359;
	text-decoration: none;
}

.handle-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 30px -8px rgba(42, 3, 89, 0.3);
}

.handle-item:hover .fa-instagram {
  color: #e4405f;
}

.handle-item:hover .fa-facebook {
  color: #1877f2;
}

.handle-item:hover .fa-tiktok {
  color: #000000;
}

.handle-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(41,3,86,1.00), transparent);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.handle-item:hover::after {
  transform: translateX(100%);
}

.handle-item:hover .fab {
  animation: bounce 0.5s ease;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

/* ===== MEJORAS PARA SOCIAL HANDLES ===== */
.handle-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 0;
}

.handle-item:hover::before {
  left: 100%;
}

.handle-item .fab {
  position: relative;
  z-index: 1;
}

.handle-item .socialmedia {
  position: relative;
  z-index: 1;
}

.handle-item:hover .socialmedia {
  color: #6B3FA0;
}

@media screen and (max-width: 900px) {
  .cont_6 {
    padding: 50px 20px;
  }
  .section-title::before,
  .section-title::after {
    width: 40px;
  }
  .section-title::before {
    left: -60px;
  }
  .section-title::after {
    right: -60px;
  }
  .social-handles {
    gap: 20px;
  }
  .handle-item {
    padding: 12px 25px;
  }
  .handle-item .fab {
    font-size: 20px;
  }
  .handle-item .socialmedia {
    font-size: 15px;
  }
}

@media screen and (max-width: 700px) {
  .cont_6 {
    padding: 40px 15px;
  }
  .cont_6 h1 {
    font-size: 28px;
  }
  .cont_6 > p {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .section-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .section-title::before,
  .section-title::after {
    width: 30px;
  }
  .section-title::before {
    left: -40px;
  }
  .section-title::after {
    right: -40px;
  }
  .social-handles {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .handle-item {
    width: 100%;
    max-width: 200px;
    justify-content: center;
    padding: 8px 15px;
    margin: 1px 0px;
  }
}

@media screen and (max-width: 480px) {
  .section-title::before,
  .section-title::after {
    display: none;
  }
  .cont_6 h1 {
    font-size: 24px;
  }
  .handle-item {
    max-width: 180px;
    padding: 8px 12px;
  }
  .handle-item .fab {
    font-size: 16px;
  }
  .handle-item .socialmedia {
    font-size: 13px;
  }
}

/* Animaciones hover líneas */
@media (hover: hover) {
  .section-title:hover::before {
    animation: expandLeft 0.8s ease infinite;
  }
  .section-title:hover::after {
    animation: expandRight 0.8s ease infinite;
  }
}

@keyframes expandLeft {
  0% {
    left: -80px;
    width: 60px;
    opacity: 0.7;
  }
  50% {
    left: -100px;
    width: 80px;
    opacity: 1;
  }
  100% {
    left: -80px;
    width: 60px;
    opacity: 0.7;
  }
}

@keyframes expandRight {
  0% {
    right: -80px;
    width: 60px;
    opacity: 0.7;
  }
  50% {
    right: -100px;
    width: 80px;
    opacity: 1;
  }
  100% {
    right: -80px;
    width: 60px;
    opacity: 0.7;
  }
}

/* ===== MEJORAS PARA BOTONES ===== */
.cont_1 .text a,
.cont_3 .text a,
.cont_4 a,
.cont_5 a {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cont_1 .text a::before,
.cont_3 .text a::before,
.cont_4 a::before,
.cont_5 a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.cont_1 .text a:hover::before,
.cont_3 .text a:hover::before,
.cont_4 a:hover::before,
.cont_5 a:hover::before {
  width: 300px;
  height: 300px;
}

.cont_1 .text a:hover,
.cont_3 .text a:hover,
.cont_4 a:hover,
.cont_5 a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -5px rgba(66, 3, 142, 0.6);
}



/* ===== OPTIMIZACIONES RESPONSIVE ===== */
@media screen and (min-width: 901px) and (max-width: 1124px) {
  .cont_2,
  .cont_3 {
    max-width: 90%;
    padding: 30px 3%;
  }
  .cont_2 .text p,
  .cont_3 .text p {
    margin-right: 3%;
  }
  .cont_5 .text h1 {
    font-size: 28px;
  }
  .cont_5 .text p {
    font-size: 16px;
  }
}

@media screen and (max-width: 600px) {
  body {
    font-size: 14px;
  }
  h1 {
    word-break: break-word;
  }
  .cont_1 .text {
    right: 5%;
    width: 90%;
  }
  .cont_1 .text h1 {
    font-size: 24px;
  }
  .cont_1 .text p {
    font-size: 13px;
  }
  .cont_2 .text h1 {
    font-size: 26px;
  }
  .cont_2 .text h2 {
    font-size: 18px;
  }
  .cont_3 .text h1 {
    font-size: 26px;
  }
  .cont_3 .text h2 {
    font-size: 18px;
  }
  .cont_5 .text h1 {
    font-size: 22px;
  }
  .cont_5 .text p {
    font-size: 14px;
  }
  .cont_6 h1 {
    font-size: 24px;
  }
  .cont_6 > p {
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .cont_4 .img-item {
    width: 70px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .nav_links a {
    padding: 10px 15px;
  }
  .cont_4 .img-item:hover img {
    transform: none;
  }
  .handle-item:hover {
    transform: none;
  }
}