    /* =================== CSS VARIABLES =================== */
    :root {
      --verde-azulado: #5eb6a7;
      --rosa: #f7a9a8;
      --morado-claro: #e6d4e7;
      --blanco: #ffffff;
      --negro: #000000;
      --amarillo: #ffd140;
      --gris: #999999;
      --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      --transition: all 0.3s ease;
      --border-radius: 15px;
      --font-family: 'Poppins', Arial, sans-serif;
    }

    /* =================== RESET Y BASE =================== */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-family);
      background-color: var(--verde-azulado);
      color: var(--blanco);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* =================== HEADER =================== */
    .header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: var(--morado-claro);
      padding: 1rem 2rem;
      border-bottom: 3px solid var(--rosa);
    }

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

    .header__logo {
      height: 50px;
      border-radius: 50%;
    }

    .header__title {
      font-size: 1.5rem;
      color: var(--rosa);
      font-weight: 700;
    }

    .nav {
      display: flex;
      gap: 1rem;
    }

    .nav__link {
      color: var(--blanco);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: var(--transition);
    }

    .nav__link:hover,
    .nav__link--active {
      background-color: var(--rosa);
      color: var(--blanco);
    }

    /* =================== MAIN CONTENT =================== */
    .main {
      flex: 1;
      padding: 2rem;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
    }

    /* =================== CONTACTO SECTIONS =================== */
    .contact-hero {
      text-align: center;
      margin-bottom: 3rem;
      padding: 2rem;
      background: linear-gradient(135deg, var(--rosa), var(--morado-claro));
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
    }

    .contact-hero__title {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--blanco);
      margin-bottom: 1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .contact-hero__subtitle {
      font-size: 1.2rem;
      color: var(--blanco);
      opacity: 0.9;
      max-width: 600px;
      margin: 0 auto;
    }

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

    .contact-card {
      background-color: var(--blanco);
      color: var(--negro);
      padding: 2rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      text-align: center;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .contact-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--rosa), var(--verde-azulado));
    }

    .contact-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    }

    .contact-card__icon {
      font-size: 3rem;
      margin-bottom: 1rem;
      display: block;
    }

    .contact-card__title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--rosa);
      margin-bottom: 1rem;
    }

    .contact-card__content {
      font-size: 1rem;
      line-height: 1.6;
    }

    .contact-card__content a {
      color: var(--verde-azulado);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .contact-card__content a:hover {
      color: var(--rosa);
      text-decoration: underline;
    }

    /* WhatsApp Button Styling */
    .whatsapp-btn {
      display: inline-block;
      background-color: #25D366;
      color: var(--blanco) !important;
      text-decoration: none !important;
      padding: 0.8rem 1.5rem;
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.95rem;
      transition: var(--transition);
      margin-top: 0.5rem;
      box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    }

    .whatsapp-btn:hover {
      background-color: #128C7E;
      color: var(--blanco) !important;
      text-decoration: none !important;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }

    /* =================== REDES SOCIALES =================== */
    .social-section {
      text-align: center;
      padding: 2rem;
      background-color: var(--morado-claro);
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      margin-bottom: 2rem;
    }

    .social-section__title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--rosa);
      margin-bottom: 1.5rem;
    }

    .social-section__subtitle {
      font-size: 1.1rem;
      color: var(--verde-azulado);
      margin-bottom: 2rem;
      font-weight: 600;
    }

    .social-icons {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .social-icon {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
      transition: var(--transition);
      padding: 1rem;
      border-radius: 12px;
      background-color: var(--blanco);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      min-width: 120px;
    }

    .social-icon:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .social-icon__image {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-bottom: 0.5rem;
      transition: var(--transition);
    }

    .social-icon:hover .social-icon__image {
      transform: scale(1.1);
    }

    .social-icon__label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--verde-azulado);
    }

    /* =================== FAQ SECTION =================== */
    .faq-section {
      background-color: var(--blanco);
      color: var(--negro);
      padding: 2rem;
      border-radius: var(--border-radius);
      box-shadow: var(--shadow);
      margin-bottom: 2rem;
    }

    .faq-section__title {
      font-size: 2rem;
      font-weight: 700;
      color: var(--rosa);
      text-align: center;
      margin-bottom: 2rem;
    }

    .faq-item {
      margin-bottom: 1rem;
      border: 2px solid #f0f0f0;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: var(--rosa);
      box-shadow: 0 2px 8px rgba(247, 169, 168, 0.2);
    }

    .faq-item:last-child {
      margin-bottom: 0;
    }

    .faq-question {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--verde-azulado);
      margin: 0;
      padding: 1.2rem;
      background: linear-gradient(135deg, #f8f9fa, #e9ecef);
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-question:hover {
      background: linear-gradient(135deg, var(--morado-claro), #dde1e6);
      color: var(--rosa);
    }

    .faq-question::after {
      content: '+';
      font-size: 1.5rem;
      font-weight: bold;
      color: var(--rosa);
      transition: transform 0.3s ease;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    .faq-question.active::after {
      transform: rotate(45deg);
    }

    .faq-answer {
      color: #666;
      line-height: 1.6;
      max-height: 0;
      overflow: hidden;
      transition: all 0.4s ease;
      padding: 0 1.2rem;
    }

    .faq-answer.active {
      max-height: 150px;
      padding: 1.2rem;
    }

    /* =================== FOOTER =================== */
    .footer {
      background-color: var(--morado-claro);
      color: var(--rosa);
      text-align: center;
      padding: 2rem;
      border-top: 3px solid var(--rosa);
      margin-top: auto;
    }

    .footer__content {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer__text {
      font-size: 1rem;
      font-weight: 600;
    }

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

    .footer__link {
      color: var(--rosa);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
    }

    .footer__link:hover {
      color: var(--verde-azulado);
      text-decoration: underline;
    }

    /* =================== RESPONSIVE =================== */
    @media (max-width: 768px) {
      .header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
      }

      .nav {
        flex-wrap: wrap;
        justify-content: center;
      }

      .main {
        padding: 1rem;
      }

      .contact-hero__title {
        font-size: 2rem;
      }

      .contact-hero__subtitle {
        font-size: 1rem;
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .contact-card {
        padding: 1.5rem;
      }

      .social-icons {
        gap: 1rem;
      }

      .social-icon {
        min-width: 100px;
        padding: 0.8rem;
      }

      .social-icon__image {
        width: 50px;
        height: 50px;
      }

      .footer__links {
        flex-direction: column;
        gap: 1rem;
      }
    }

    @media (max-width: 480px) {
      .header__title {
        font-size: 1.2rem;
      }

      .nav__link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
      }

      .contact-hero {
        padding: 1.5rem;
      }

      .contact-card {
        padding: 1rem;
      }

      .social-section,
      .faq-section {
        padding: 1.5rem;
      }
    }

    /* =================== ANIMATIONS =================== */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contact-card,
    .social-section,
    .faq-section {
      animation: fadeInUp 0.6s ease forwards;
    }

    .contact-card:nth-child(2) {
      animation-delay: 0.1s;
    }

    .contact-card:nth-child(3) {
      animation-delay: 0.2s;
    }

    /* =================== UTILITY CLASSES =================== */
    .text-center {
      text-align: center;
    }

    .mb-1 {
      margin-bottom: 0.5rem;
    }

    .mb-2 {
      margin-bottom: 1rem;
    }

    .mb-3 {
      margin-bottom: 1.5rem;
    }

    .mb-4 {
      margin-bottom: 2rem;
    }

    .mt-1 {
      margin-top: 0.5rem;
    }

    .mt-2 {
      margin-top: 1rem;
    }

    .mt-3 {
      margin-top: 1.5rem;
    }

    .mt-4 {
      margin-top: 2rem;
    }
