body {
      box-sizing: border-box;
    }
    
    :root {
      --pastel-lavender: #e8e4ff;
      --pastel-mint: #e0f7f0;
      --pastel-peach: #ffe8e0;
      --pastel-blue: #e0f0ff;
      --pastel-pink: #ffe0f0;
      --soft-purple: #9b87f5;
      --soft-teal: #4fd1c7;
      --soft-coral: #ff8a80;
      --text-dark: #2d3748;
      --text-gray: #4a5568;
      --text-light: #718096;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: var(--text-dark);
      background: linear-gradient(135deg, var(--pastel-lavender) 0%, var(--pastel-pink) 50%, var(--pastel-mint) 100%); /* color del fondo en rosa claro */
      min-height: 100vh;
    }

    /* Header */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(155, 135, 245, 0.1);
      padding: 1rem 0;
    }

    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.5rem;
      font-weight: 700;
      color: #e5abf3;
      text-decoration: none;
    }

    .logo-icon {
      width: 50px;        
      height: auto;       
      border-radius: 8px;
    }

    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    .nav-link {
      text-decoration: none;
      color: var(--text-gray);
      font-weight: 500;
      transition: color 0.3s ease;
      position: relative;
    }

    .nav-link:hover {
      color: var(--soft-purple);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--soft-purple);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .social-links {
      display: flex;
      gap: 0.5rem;
      margin-left: 1rem;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.3s ease;
      color: var(--text-gray);
    }

    .social-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(155, 135, 245, 0.3);
    }

    .social-link.facebook {
      background: var(--pastel-blue);
    }

    .social-link.facebook:hover {
      background: #1877f2;
      color: white;
    }

    .social-link.instagram {
      background: var(--pastel-pink);
    }

    .social-link.instagram:hover {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      color: white;
    }

    .cta-button {
      background: #ca90c8;
      color: white;
      margin: 5px;
      padding: 0.75rem 1.5rem;
      border-radius: 25px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(155, 135, 245, 0.3);
    }

    .cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(155, 135, 245, 0.4);
    }

    /* Mobile menu */
    .mobile-menu-btn {
      display: none;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.5rem;
    }

    .mobile-menu-btn span {
      width: 25px;
      height: 3px;
      background: var(--soft-purple);
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    .mobile-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(155, 135, 245, 0.1);
      padding: 1rem 2rem;
    }

    .mobile-menu.active {
      display: block;
    }

    .mobile-nav {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .mobile-social {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(155, 135, 245, 0.1);
    }

    /* Sections */
    .section {
      padding: 6rem 2rem;
      max-width: 1200px;
      margin: 0 auto;
    }

    .section:first-of-type {
      padding-top: 8rem;
    }

    .section-title {
      font-size: 2.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 1rem;
      background: linear-gradient(135deg, var(--soft-purple), var(--soft-teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .section-subtitle {
      font-size: 1.2rem;
      color: var(--text-light);
      text-align: center;
      margin-bottom: 3rem;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    /* Banner Section */
    .banner-section {
      background: linear-gradient(135deg, var(--soft-purple) 0%, var(--pastel-pink) 50%, var(--soft-coral) 100%);
      padding: 8rem 2rem 4rem;
      position: relative;
      overflow: hidden;
      margin-top: 80px;
    }

    .banner-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
      opacity: 0.3;
    }

    .banner-container {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .banner-content {
      text-align: center;
      position: relative;
    }

    .banner-title {
      font-size: 4rem;
      font-weight: 800;
      color: white;
      margin-bottom: 1rem;
      text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      letter-spacing: -0.02em;
      line-height: 1.1;
    }

    .banner-subtitle {
      font-size: 1.5rem;
      color: rgb(110, 109, 109);
      font-weight: 500;
      margin-bottom: 2rem;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Hero Section */
    .hero {
      text-align: center;
      padding: 6rem 2rem 6rem;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 1.5rem;
      background: #fc69f4;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .hero-subtitle {
      font-size: 1.3rem;
      color: var(--text-gray);
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-buttons {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 3rem;
    }

    .btn-primary {
      background: #ca90c8;
      color: white;
      padding: 1rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(155, 135, 245, 0.3);
    }

    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 25px rgba(155, 135, 245, 0.4);
    }

    .btn-secondary {
      background: white;
      color: var(--soft-purple);
      padding: 1rem 2rem;
      border-radius: 30px;
      text-decoration: none;
      font-weight: 600;
      border: 2px solid var(--soft-purple);
      transition: all 0.3s ease;
    }

    .btn-secondary:hover {
      background: #f5a7f2;
      color: white;
      transform: translateY(-3px);
    }

    .hero-features {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-gray);
      font-weight: 500;
    }

    .feature-icon {
      width: 20px;
      height: 20px;
      background: var(--soft-teal);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 0.8rem;
    }

    /* Services Cards */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .service-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(155, 135, 245, 0.1);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--soft-purple), var(--soft-teal));
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(155, 135, 245, 0.2);
    }

    .service-card.featured {
      border: 2px solid var(--soft-purple);
      transform: scale(1.05);
    }

    .service-card.featured::before {
      height: 6px;
    }

    .service-header {
      text-align: center;
      margin-bottom: 1.5rem;
    }

    .service-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      font-size: 1.5rem;
    }

    .service-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .service-price {
      font-size: 2rem;
      font-weight: 700;
      color: var(--soft-purple);
      margin-bottom: 0.5rem;
    }

    .service-period {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    .service-features {
      list-style: none;
      margin: 1.5rem 0;
    }

    .service-features li {
      padding: 0.5rem 0;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--text-gray);
    }

    .service-features li::before {
      content: '✓';
      color: var(--soft-teal);
      font-weight: bold;
      width: 20px;
      height: 20px;
      background: var(--pastel-mint);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    .service-button {
      width: 100%;
      background: linear-gradient(135deg, var(--soft-purple), var(--soft-teal));
      color: white;
      padding: 1rem;
      border: none;
      border-radius: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: block;
      text-align: center;
    }

    .service-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(155, 135, 245, 0.3);
    }


    .popular-badge {
      position: absolute;
      top: -10px;
      right: 20px;
      background: linear-gradient(135deg, var(--soft-coral), #ff6b6b);
      color: white;
      padding: 0.5rem 1rem;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: 600;
      box-shadow: 0 4px 10px rgba(255, 107, 107, 0.3);
    }
    .about-me {
   background:linear-gradient(135deg, #e8e4ff 0%, #c3b8ff 50%, #a18cff 100%);
   padding: 4rem 2rem;
   text-align: center;
   }

 .about-container {
    max-width: 800px;
    margin: 0 auto;
 }


 .about-me h2 {
  font-size: 2rem;
  color: #00343d; /* color que elegiste para contraste */
  margin-bottom: 1rem;
 }
 .about-me p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 1rem;
 }
 
    .pricing-note {
      font-size: 0.9rem;
      color: #545454;
      margin-top: 1.5rem;
      text-align: center;
      font-style: italic;
    }

    /* Testimonials */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(155, 135, 245, 0.1);
      transition: all 0.3s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(155, 135, 245, 0.15);
    }

    .testimonial-content {
      font-style: italic;
      color: var(--text-gray);
      margin-bottom: 1.5rem;
      line-height: 1.7;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .author-avatar {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-peach));
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--soft-purple);
    }

    .author-info h4 {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.2rem;
    }

    .author-info p {
      color: var(--text-light);
      font-size: 0.9rem;
    }

    /* Forms */
    .form-container {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 30px rgba(155, 135, 245, 0.1);
      max-width: 600px;
      margin: 2rem auto;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 1rem;
      border: 2px solid var(--pastel-lavender);
      border-radius: 10px;
      font-family: inherit;
      transition: border-color 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--soft-purple);
    }

    .form-message {
      display: none;
      padding: 1rem;
      border-radius: 10px;
      margin-top: 1rem;
      font-weight: 600;
    }

    .form-message.success {
      background: var(--pastel-mint);
      color: var(--soft-teal);
      border: 1px solid var(--soft-teal);
    }

    /* Contact Info */
    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: white;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(155, 135, 245, 0.1);
      transition: all 0.3s ease;
    }

    .contact-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(155, 135, 245, 0.15);
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, var(--pastel-lavender), var(--pastel-mint));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    .contact-details h4 {
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.3rem;
    }

    .contact-details p {
      color: var(--text-gray);
    }

    .contact-details a {
      color: var(--soft-purple);
      text-decoration: none;
      font-weight: 500;
    }

    .contact-details a:hover {
      text-decoration: underline;
    }

    /* Footer */
    .footer {
      background: white;
      border-top: 1px solid rgba(155, 135, 245, 0.1);
      padding: 2rem;
      text-align: center;
    }

    .footer-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-text {
      color: var(--text-light);
    }

    .footer-social {
      display: flex;
      gap: 1rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .nav-menu {
        display: none;
      }

      .mobile-menu-btn {
        display: flex;
      }

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

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

      .services-grid {
        grid-template-columns: 1fr;
      }

      .service-card.featured {
        transform: none;
      }

      .hero-buttons {
        flex-direction: column;
        align-items: center;
      }

      .hero-features {
        flex-direction: column;
        align-items: center;
      }

      .footer-content {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 480px) {
      .nav-container {
        padding: 0 1rem;
      }

      .section {
        padding: 4rem 1rem;
      }

      .hero {
        padding: 6rem 1rem 4rem;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }
    }