* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    :root {
      --primary: #2c7ae0;
      --secondary: #34a853;
      --accent: #ff6b00;
      --light: #f8f9fa;
      --dark: #212529;
      --text: #333;
    }


html, body {
  overflow-x: hidden;
  overflow-y: auto; /* Asegura que el scroll vertical esté habilitado */
  height: auto; /* Permite que el body crezca con el contenido */
}

 body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top left, #a8e0ff, #ffffff);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  position: relative;
}

/* efecto de rayos de luz */
body::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    60deg,
    rgba(35, 173, 253, 0.712) 0px,
    rgba(51, 197, 255, 0.781) 3px,
    transparent 3px,
    transparent 8px
  );
  transform: rotate(15deg);
  animation: lightMove 12s linear infinite;
  z-index: 0;
}

/* animación de rayos */
@keyframes lightMove {
  0% { transform: rotate(15deg) translateX(0); }
  100% { transform: rotate(15deg) translateX(60px); }
}

/* burbujas */
.bubble {
  position: absolute;
  bottom: -100px;
  background: radial-gradient(circle at 30% 30%, #ffffff, rgba(0, 191, 255, 0.6));
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 191, 255, 0.7);
  animation: rise 18s infinite ease-in;
  opacity: 0.9;
  z-index: 10;
}

@keyframes rise {
  0% { transform: translateY(0) scale(1); opacity: 0.7; }
  50% { opacity: 1; }
  100% { transform: translateY(-700vh) scale(1.4); opacity: 0; }
}

/* diferentes tamaños de burbujas */
.bubble:nth-child(1) { left: 10%; width: 45px; height: 45px; animation-duration: 16s; }
.bubble:nth-child(2) { left: 25%; width: 30px; height: 30px; animation-duration: 20s; }
.bubble:nth-child(3) { left: 40%; width: 70px; height: 70px; animation-duration: 22s; }
.bubble:nth-child(4) { left: 55%; width: 35px; height: 35px; animation-duration: 18s; }
.bubble:nth-child(5) { left: 70%; width: 55px; height: 55px; animation-duration: 23s; }
.bubble:nth-child(6) { left: 85%; width: 40px; height: 40px; animation-duration: 19s; }
.bubble:nth-child(7) { left: 15%; width: 50px; height: 50px; animation-duration: 21s; }
.bubble:nth-child(8) { left: 35%; width: 25px; height: 25px; animation-duration: 17s; }
.bubble:nth-child(9) { left: 60%; width: 60px; height: 60px; animation-duration: 24s; }
.bubble:nth-child(10){ left: 80%; width: 45px; height: 45px; animation-duration: 20s; }




    /* Header & Navigation */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 15px rgba(233, 30, 99, 0.1); /* Rosa */
      transition: all 0.3s ease;
    }

    header.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 5px 20px rgba(233, 30, 99, 0.15); /* Rosa */
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 0;
    }

    .logo-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    #hero-logo3{
        display: none;
    }

    .logo-placeholder {
      width: 50px;
      height: 50px;
      background: #e91e63; /* Rosa */
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: bold;
      font-size: 20px;
      margin-left: 15px;
    }

    .logo-text {
      font-size: 22px;
      font-weight: 700;
      color: #e91e63; /* Rosa */
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav-menu li a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      font-size: 16px;
      transition: all 0.3s ease;
      position: relative;
    }

    .nav-menu li a:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: #e91e63; /* Rosa */
      transition: width 0.3s ease;
    }

    .nav-menu li a:hover {
      color: #e91e63; /* Rosa */
    }

    .nav-menu li a:hover:after {
      width: 100%;
    }

    .nav-cta {
      background: #e91e63; /* Rosa */
      color: white;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .nav-cta:hover {
      background: #ad1457; /* Rosa oscuro */
      transform: translateY(-2px);
    }

    .nav-cta:hover:after {
      display: none;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-right: 15px;
    }

    .hamburger span {
      width: 25px;
      height: 3px;
      background: var(--dark);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Hero Section */
    .hero {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
      background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.8)),
        url('https://images.unsplash.com/photo-1581579188871-45ea61f2a0c8?auto=format&fit=crop&w=1350&q=80')
        center/cover no-repeat;
      color: var(--dark);
      margin-top: 80px;
      position: relative;
    }

    #hero-logo1{
        width: 26%;
        margin: 100px;
    }

    #hero-logo2{
        display: none;
        width: 40%;
        padding-bottom: 50px;
    }

    .hero-content {
      max-width: 800px;
      z-index: 2;
    }

    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: #e91e63; /* Rosa */
      animation: fadeInUp 1s ease-out;
    }

    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: var(--text);
      animation: fadeInUp 1.5s ease-out;
    }

    #email_hero{
      color: #ad1457; /* Rosa oscuro */
      font-weight: bold;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      animation: fadeInUp 2s ease-out;
    }

    .btn {
      padding: 12px 30px;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .btn-primary {
      background: #e91e63; /* Rosa */
      color: white;
    }

    .btn-primary:hover {
      background: #ad1457; /* Rosa oscuro */
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2); /* Rosa */
    }

    .btn-secondary {
      background: transparent;
      color: #e91e63; /* Rosa */
      border: 2px solid #e91e63; /* Rosa */
    }

    .btn-secondary:hover {
      background: #e91e63; /* Rosa */
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(233, 30, 99, 0.2); /* Rosa */
    }

    .hero-badge {
      position: absolute;
      top: 30px;
      right: 30px;
      background: #ec407a; /* Rosa secundario */
      color: white;
      padding: 10px 15px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 14px;
      animation: pulse 2s infinite;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
      100% {
        transform: scale(1);
      }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
      .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(233, 30, 99, 0.05); /* Rosa */
        padding: 20px 0;
        gap: 0;
      }

      .nav-menu.active {
        left: 0;
      }

      .nav-menu li {
        margin: 15px 0;
      }

      .hamburger {
        display: flex;
      }

      .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
      }

      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
      }

      .hero h1 {
        font-size: 2.5rem;
      }

      #hero-logo1{
        display: none;
      }

      #hero-logo2 {
        display: block;
        margin: 0 auto;
      }
    }

    @media (max-width: 768px) {
      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .hero-badge {
        top: 15px;
        right: 15px;
        font-size: 12px;
      }

      .logo-placeholder{
        display: none;
      }

      .logo-text{
        display: none;
      }

      #hero-logo2{
        width: 60%;
      }

      #hero-logo3{
        display: flex;
        max-width: 40%;
        margin-left: 15px;
      }

      .hero-badge{
        display: none;
      }

      .hero{
        margin-top: 10px;
      }
    }




















    /* Services Section */
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 90% 10%, rgba(233, 30, 99, 0.05) 0%, transparent 20%), /* Rosa */
    radial-gradient(circle at 10% 90%, rgba(236, 64, 122, 0.05) 0%, transparent 20%); /* Rosa secundario */
  pointer-events: none;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #e91e63; /* Rosa */
  border-radius: 2px;
}

.section-title p {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08); /* Rosa */
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%); /* Rosa gradiente */
  transition: height 0.3s ease;
  z-index: -1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15); /* Rosa */
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover .service-icon {
  background: white;
  color: #e91e63; /* Rosa */
}

.service-card:hover .service-content h3,
.service-card:hover .service-content p,
.service-card:hover .service-features li {
  color: white;
}

.service-icon {
  background: #e91e63; /* Rosa */
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.service-content {
  padding: 25px;
}

.service-content h3 {
  margin-bottom: 15px;
  color: var(--dark);
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.service-content p {
  margin-bottom: 20px;
  color: #6c757d;
  transition: color 0.3s ease;
}

.service-features {
  list-style: none;
}

.service-features li {
  margin-bottom: 10px;
  color: #6c757d;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: #ec407a; /* Rosa secundario */
  margin-right: 10px;
  transition: color 0.3s ease;
}

.service-card:hover .service-features li i {
  color: #f8bbd9; /* Rosa claro */
}

.services-cta {
  text-align: center;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08); /* Rosa */
}

.services-cta h3 {
  margin-bottom: 15px;
  color: var(--dark);
  font-size: 1.8rem;
}

.services-cta p {
  margin-bottom: 25px;
  color: #6c757d;
  font-size: 1.1rem;
}

/* Responsive Design for Services */
@media (max-width: 992px) {
  .services {
    padding: 80px 0;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .services-cta {
    padding: 30px 20px;
  }
  
  .services-cta h3 {
    font-size: 1.5rem;
  }
}















/* About Us Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(233, 30, 99, 0.03) 0%, transparent 20%), /* Rosa */
    radial-gradient(circle at 75% 75%, rgba(236, 64, 122, 0.03) 0%, transparent 20%); /* Rosa secundario */
  pointer-events: none;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-content h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.about-features {
  margin: 30px 0;
}

.feature {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.feature i {
  color: #ec407a; /* Rosa secundario */
  margin-right: 15px;
  font-size: 1.2rem;
}

.feature span {
  color: #555;
  font-weight: 500;
}

.about-image {
  position: relative;
}

.image-carousel {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(233, 30, 99, 0.15); /* Rosa */
  height: 400px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s ease;
}

.carousel-dot.active {
  background: white;
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #e91e63; /* Rosa */
  color: white;
  padding: 20px;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.2); /* Rosa */
  animation: pulse 2s infinite;
  z-index: 10;
}

.experience-badge .years {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .text {
  font-size: 0.7rem;
  margin-top: 5px;
  line-height: 1.1;
}

.values-section {
  text-align: center;
}

.values-section h3 {
  font-size: 2rem;
  color: var(--dark);
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(233, 30, 99, 0.08); /* Rosa */
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.15); /* Rosa */
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%); /* Rosa gradiente */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.8rem;
}

.value-card h4 {
  color: var(--dark);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-content h3 {
    font-size: 1.8rem;
  }
  
  .image-carousel {
    height: 350px;
  }
  
  .experience-badge {
    width: 80px;
    height: 80px;
  }
  
  .experience-badge .years {
    font-size: 1.5rem;
  }
  
  .experience-badge .text {
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about-container {
    margin-bottom: 50px;
  }
  
  .image-carousel {
    height: 300px;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    padding: 25px 20px;
  }
  
  .value-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}















/* Contact Section */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fef7fa 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 15% 80%, rgba(233, 30, 99, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(236, 64, 122, 0.08) 0%, transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(248, 187, 217, 0.05) 0%, transparent 30%);
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.contact-info {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.12);
  height: fit-content;
  border: 1px solid #f8bbd9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(233, 30, 99, 0.18);
}

.contact-header {
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.contact-header h3 {
  color: #e91e63;
  margin-bottom: 10px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.contact-header h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e91e63, #ec407a);
  border-radius: 2px;
}

.contact-header p {
  color: #666;
  font-size: 1.1rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  background: white;
  position: relative;
  overflow: hidden;
}

/* CORRECCIÓN: Mejor control del efecto de banda */
.contact-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.08), transparent);
  transition: left 0.8s ease;
  z-index: 1;
}

.contact-method:hover::before {
  left: 100%;
}

.contact-method:hover {
  border-color: #e91e63;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.15);
}

/* CORRECCIÓN: Scale removido para móvil */
.contact-method.highlight {
  background: linear-gradient(135deg, #fef7fa 0%, #f8bbd9 100%);
  border-color: #e91e63;
  position: relative;
  overflow: hidden;
}

.contact-method.highlight::before {
  content: "⭐ Recommended";
  position: absolute;
  top: 15px;
  right: -32px;
  background: linear-gradient(45deg, #e91e63, #ec407a);
  color: white;
  padding: 4px 35px;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 10px rgba(233, 30, 99, 0.3);
  z-index: 2;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2; /* Asegura que el icono esté sobre la banda */
}

.contact-method:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
}

.contact-method.highlight .contact-icon {
  background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.contact-details {
  position: relative;
  z-index: 2; /* Asegura que el contenido esté sobre la banda */
  flex: 1;
}

.contact-details h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-weight: 600;
}

.contact-details p {
  color: #666;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contact-link {
  color: #e91e63;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: relative;
  z-index: 2; /* Asegura que el link esté sobre la banda */
}

.contact-link:hover {
  color: #ad1457;
  text-decoration: underline;
  transform: translateX(3px);
}

.contact-method.highlight .contact-link {
  color: #ad1457;
  font-size: 1.2rem;
}

.contact-text {
  color: #333;
  font-weight: 600;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.12);
  border: 1px solid #f8bbd9;
  transition: transform 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-3px);
}

.contact-form h3 {
  color: #e91e63;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.8rem;
  position: relative;
}

.contact-form h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: #e91e63;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
  background: white;
  transform: translateY(-2px);
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
  margin-top: 10px;
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.3);
}

.contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(233, 30, 99, 0.03) 0%, transparent 10%),
    radial-gradient(circle at 80% 70%, rgba(236, 64, 122, 0.03) 0%, transparent 10%);
  animation: floatParticles 8s ease-in-out infinite;
}

@keyframes floatParticles {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(10px, -5px) rotate(1deg); }
  66% { transform: translate(-5px, 5px) rotate(-1deg); }
}

/* RESPONSIVE - CORRECCIONES CRÍTICAS */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info,
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    align-items: center;
    /* CORRECCIÓN: Overflow visible para que la banda no corte */
    overflow: visible;
  }
  
  /* CORRECCIÓN: Banda más sutil en móvil */
  .contact-method::before {
    background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.04), transparent);
    left: -150%;
    width: 150%;
  }
  
  .contact-method:hover::before {
    left: 150%;
  }
  
  /* CORRECCIÓN: Scale removido en móvil para evitar desborde */
  .contact-method:hover {
    transform: translateY(-3px);
    scale: 1; /* Removemos el scale en móvil */
  }
  
  .contact-icon {
    margin: 0 auto;
  }
  
  /* CORRECCIÓN: Mejor posición del badge en móvil */
  .contact-method.highlight::before {
    top: 12px;
    right: -28px;
    font-size: 0.6rem;
    padding: 3px 25px;
    z-index: 3;
  }
  
  .contact-info,
  .contact-form {
    padding: 25px 20px;
    border-radius: 15px;
  }
  
  .contact-header h3 {
    font-size: 1.7rem;
  }

  #hero-logo2{
    transform: translate(0, 30%);
  }
  
  /* CORRECCIÓN: Asegurar que el contenido esté siempre visible */
  .contact-details {
    width: 100%;
  }
  
  .contact-link {
    word-break: break-all; /* Para emails largos */
  }
}

/* CORRECCIÓN ADICIONAL: Para pantallas muy pequeñas */
@media (max-width: 480px) {
  .contact-method::before {
    display: none; /* Ocultamos completamente la banda en móviles muy pequeños */
  }
  
  .contact-method.highlight::before {
    top: 8px;
    right: -25px;
    font-size: 0.55rem;
    padding: 2px 20px;
  }
  
  .contact-method {
    padding: 15px 10px;
  }
}























/* Footer Section */
.footer {
  background: linear-gradient(135deg, #141414 0%, #2e2e2e 100%); /* Gradiente rosa oscuro */
  color: white;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(233, 30, 99, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(236, 64, 122, 0.15) 0%, transparent 40%);
  animation: footerFloat 8s ease-in-out infinite;
}

@keyframes footerFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.02); }
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo img {
  max-width: 200px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
}

.footer-description {
  color: #f8bbd9; /* Rosa claro */
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 300;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
  border-color: transparent;
}

.footer-title {
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  color: #f8bbd9; /* Rosa claro */
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #e91e63, #ec407a); /* Gradiente rosa */
  border-radius: 2px;
  transition: width 0.3s ease;
}

.footer-column:hover .footer-title::after {
  width: 80px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: #f0f0f0;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 20px;
  display: block;
}

.footer-links a::before {
  content: "🌸"; /* Icono flor rosa */
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
  transform: translateX(-10px);
}

.footer-links a:hover {
  color: white;
  padding-left: 25px;
}

.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.contact-item i {
  color: #ec407a; /* Rosa secundario */
  font-size: 1.2rem;
  margin-top: 3px;
  transition: transform 0.3s ease;
}

.contact-item:hover i {
  transform: scale(1.2);
  color: #f8bbd9;
}

.contact-item div {
  display: flex;
  flex-direction: column;
}

.contact-item span {
  font-size: 0.85rem;
  color: #f8bbd9; /* Rosa claro */
  margin-bottom: 3px;
  font-weight: 300;
}

.contact-item a, .contact-item p {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-item a:hover {
  color: #f8bbd9;
  text-decoration: underline;
}

.getquote_footer {
  text-align: center;
  justify-content: center;
  margin-top: 20px;
}

.getquote_footer .btn {
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.getquote_footer .btn:hover {
  background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(233, 30, 99, 0.4);
}

.newsletter-text {
  color: #f8bbd9;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newsletter-form input {
  padding: 14px 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-form input::placeholder {
  color: #f8bbd9;
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: #e91e63;
  box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.2);
}

.newsletter-form button {
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91e63 0%, #ec407a 100%);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #ad1457 0%, #e91e63 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.4);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 30px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #f8bbd9;
  font-size: 0.9rem;
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #f8bbd9;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer-bottom-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #e91e63;
  transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
  color: white;
}

.footer-bottom-links a:hover::after {
  width: 100%;
}

.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248, 187, 217, 0.1) 0%, transparent 70%);
  animation: bubbleFloat 6s ease-in-out infinite;
}

@keyframes bubbleFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.1); }
}

.bubble-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.bubble-3 {
  width: 60px;
  height: 60px;
  top: 40%;
  right: 20%;
  animation-delay: 4s;
}

/* Responsive Design for Footer */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
  
  .footer-column:last-child {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
}

@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 50px 0 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-logo {
    text-align: center;
  }
  
  .footer-logo img {
    margin: 0 auto 20px;
  }
  
  .footer-title {
    text-align: center;
  }
  
  .footer-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .contact-item {
    justify-content: center;
    text-align: center;
  }
  
  .newsletter-form {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .decoration-bubble {
    display: none;
  }

  .footer-contact{
    transform: translate(-5.5%, 0);
  }
  
}
