body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
      background: linear-gradient(135deg, #fc466b, #3f5efb);
      color: white;
      scroll-behavior: smooth;
    }

    header {
      text-align: center;
      padding: 60px 20px 30px;
      position: relative;
      overflow: hidden;
    }

    header::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 70%);
      z-index: -1;
    }

    header h1 {
      font-size: 3.2rem;
      margin: 0;
      background: linear-gradient(to right, #fff, #f0f0f0);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    .slogan {
      font-size: 1.4rem;
      opacity: 0.95;
      margin-top: 15px;
      font-weight: 300;
    }

    .intro {
      text-align: center;
      padding: 60px 20px;
      max-width: 800px;
      margin: auto;
      position: relative;
    }

    .intro h2 {
      font-size: 2.4rem;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
    }

    .intro h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: white;
      border-radius: 3px;
    }

    .intro p {
      font-size: 1.2rem;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .boton-principal,
    .boton-secundario {
      background-color: #ffffff;
      color: #3f5efb;
      padding: 15px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: bold;
      margin: 15px 10px;
      display: inline-block;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
    }

    .boton-principal::after,
    .boton-secundario::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(255,255,255,0.3), transparent);
      transform: translateY(-100%);
      transition: transform 0.4s ease;
    }

    .boton-principal:hover::after,
    .boton-secundario:hover::after {
      transform: translateY(0);
    }

    .boton-principal {
      background: linear-gradient(45deg, #ffffff, #f0f0f0);
    }

    .boton-secundario {
      background: transparent;
      border: 2px solid white;
      color: white;
    }

    .boton-principal:hover,
    .boton-secundario:hover {
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .boton-principal:active,
    .boton-secundario:active {
      transform: translateY(0) scale(1);
    }

    .imagen-anuncio {
      width: 100%;
      max-width: 700px;
      margin: 40px auto;
      display: block;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      cursor: pointer;
    }

    .imagen-anuncio:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    }

    .beneficios {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      padding: 70px 20px;
      background: rgba(255, 255, 255, 0.05);
      margin: 40px 0;
      position: relative;
    }

    .beneficios::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    }

    .beneficios::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    }

    .beneficio {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 16px;
      padding: 30px 25px;
      max-width: 320px;
      text-align: center;
      backdrop-filter: blur(10px);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
    }

    .beneficio::before {
      content: "";
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
      transform: rotate(30deg);
      transition: all 0.6s ease;
      opacity: 0;
    }

    .beneficio:hover::before {
      opacity: 1;
      transform: rotate(0) translate(20%, 20%);
    }

    .beneficio:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      background: rgba(255, 255, 255, 0.15);
    }

    .beneficio h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
    }

    .beneficio p {
      font-size: 1.1rem;
      line-height: 1.6;
    }

    .beneficio i {
      font-size: 2.5rem;
      margin-bottom: 20px;
      display: block;
      color: white;
    }

    .precios {
      padding: 60px 20px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .precios h2 {
      font-size: 2.4rem;
      margin-bottom: 40px;
      position: relative;
      display: inline-block;
    }

    .precios h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: white;
      border-radius: 3px;
    }

    .precios table {
      width: 100%;
      max-width: 900px;
      margin: auto;
      border-collapse: collapse;
      background: white;
      color: #333;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s ease;
    }

    .precios table:hover {
      transform: scale(1.01);
    }

    th,
    td {
      padding: 18px 15px;
      border-bottom: 1px solid #eee;
      text-align: left;
    }

    th {
      background-color: #f8f8f8;
      font-weight: 600;
      color: #3f5efb;
    }

    tr:last-child td {
      border-bottom: none;
    }

    tr:hover td {
      background-color: #f5f5f5;
    }

    footer {
      text-align: center;
      padding: 30px 20px;
      font-size: 1rem;
      background-color: rgba(0, 0, 0, 0.15);
      margin-top: 70px;
      position: relative;
    }

    footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(to right, transparent, rgba(255,255,255,0.5), transparent);
    }

    .social-links {
      margin: 20px 0;
    }

    .social-links a {
      color: white;
      font-size: 1.5rem;
      margin: 0 15px;
      transition: transform 0.3s ease;
      display: inline-block;
    }

    .social-links a:hover {
      transform: translateY(-5px) scale(1.2);
    }

    .floating-button {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: white;
      color: #3f5efb;
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      z-index: 100;
      transition: all 0.3s ease;
      animation: pulse 2s infinite;
    }

    .floating-button:hover {
      transform: scale(1.1) rotate(10deg);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.1); }
      100% { transform: scale(1); }
    }

    .testimonios {
      padding: 60px 20px;
      background: rgba(255, 255, 255, 0.05);
      margin: 40px 0;
    }

    .testimonios h2 {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 50px;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .testimonios h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: white;
      border-radius: 3px;
    }

    .testimonio-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .testimonio {
      background: rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 30px;
      max-width: 350px;
      position: relative;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      transition: all 0.4s ease;
    }

    .testimonio:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    }

    .testimonio-texto {
      font-style: italic;
      line-height: 1.8;
      margin-bottom: 20px;
      position: relative;
      padding-left: 20px;
    }

    .testimonio-texto::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 3rem;
      line-height: 1;
      color: rgba(255, 255, 255, 0.2);
    }

    .testimonio-autor {
      display: flex;
      align-items: center;
    }

    .testimonio-autor img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
      border: 2px solid white;
    }

    .autor-info h4 {
      margin: 0 0 5px 0;
    }

    .autor-info p {
      margin: 0;
      opacity: 0.8;
      font-size: 0.9rem;
    }

    .faq {
      padding: 60px 20px;
      max-width: 800px;
      margin: 0 auto;
    }

    .faq h2 {
      text-align: center;
      font-size: 2.4rem;
      margin-bottom: 50px;
      position: relative;
    }

    .faq h2::after {
      content: "";
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: white;
      border-radius: 3px;
    }

    .pregunta {
      margin-bottom: 25px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      padding-bottom: 20px;
    }

    .pregunta:last-child {
      border-bottom: none;
    }

    .pregunta-titulo {
      font-size: 1.3rem;
      margin-bottom: 15px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: color 0.3s ease;
    }

    .pregunta-titulo:hover {
      color: #f0f0f0;
    }

    .pregunta-titulo::after {
      content: "+";
      font-size: 1.5rem;
      transition: transform 0.3s ease;
    }

    .pregunta.activa .pregunta-titulo::after {
      transform: rotate(45deg);
    }

    .pregunta-respuesta {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding-top 0.3s ease;
    }

    .pregunta.activa .pregunta-respuesta {
      max-height: 500px;
      padding-top: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      header h1 {
        font-size: 2.5rem;
      }
      
      .slogan {
        font-size: 1.2rem;
      }
      
      .intro h2,
      .precios h2,
      .testimonios h2,
      .faq h2 {
        font-size: 2rem;
      }
      
      .beneficio {
        max-width: 100%;
      }
      
      .tabla-responsive table {
        min-width: 100%;
      }
      
      th, td {
        padding: 12px 8px;
        font-size: 0.9rem;
      }
    }

    /* Animaciones personalizadas */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }

    .float {
      animation: float 4s ease-in-out infinite;
    }

    .delay-1 {
      animation-delay: 0.2s;
    }

    .delay-2 {
      animation-delay: 0.4s;
    }

    .delay-3 {
      animation-delay: 0.6s;
    }

    .tabla-responsive {
  overflow-x: auto;
  width: 100%;
}

.tabla-responsive table {
  min-width: 600px;
}
