:root {
      --rich-black-fogra-29: #111827;
      --oxford-blue: #1C274E;
      --charcoal: #363636;
      --white: #FFFFFF;
      --white-60: hsla(0, 0%, 100%, 0.6);
      --spanish-gray: #999999;
      --sonic-silver: #757575;
      --gainsboro: #DFDFDF;
      --light-gray: #D1D5DB;

      /* Fuentes */
      --ff-poppins: 'Poppins', sans-serif;
      --ff-inter: 'Inter', sans-serif;

      /* Sombras */
      --shadow-1: 0 10px 10px hsla(231, 62%, 94%, 0.7);

      /* Border Radius */
      --radius-20: 20px;
      --radius-50: 50px;
    }

    /* Estilos generales */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      font-family: var(--ff-inter);
      scroll-behavior: smooth;
    }

    body {
      background-color: var(--white);
      color: var(--rich-black-fogra-29);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container2 {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
    }

    .section {
      padding: 80px 0;
    }

    .h1,
    .h2,
    .h3,
    .h4 {
      font-family: var(--ff-poppins);
      font-weight: 700;
      color: var(--oxford-blue);
    }

    .h1 {
      font-size: 3rem;
    }

    .h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .h3 {
      font-size: 2rem;
    }

    .h4 {
      font-size: 1.5rem;
    }

    

    /* Estilos específicos del formulario */
    .newsletter-form-2 {
      display: flex;
      flex-direction: column;
      gap: 2px;
      background: var(--white);
      padding: 40px;
      border-radius: var(--radius-20);
      box-shadow: var(--shadow-1);
    }

    .newsletter-form-2 .label {
      font-weight: 500;
      color: var(--oxford-blue);
    }

    .newsletter-form-2 .email-field {
      width: 100%;
      padding: 15px 20px;
      border: 1px solid var(--gainsboro);
      border-radius: var(--radius-20);
      font-family: var(--ff-inter);
      font-size: 1.5rem;
      color: var(--rich-black-fogra-29);
      transition: border-color 0.3s;
    }

    .newsletter-form-2 .email-field:focus {
      outline: none;
      border-color: var(--rich-black-fogra-29);
    }

    .newsletter-form-2 textarea.email-field {
      resize: vertical;
      min-height: 120px;
    }

    /* Estilos de la sección de contacto */
    .contact-container {
      display: flex;
      flex-wrap: wrap;
      gap: 50px;
      align-items: flex-start;
      margin-top: 50px;
    }

    .contact-info,
    .contact-form-wrapper {
      flex: 1 1 45%;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 25px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 2rem;
      color: var(--charcoal);
    }

    .contact-item ion-icon {
      font-size: 2rem;
      color: var(--rich-black-fogra-29);
    }

    /* Estilos del mapa */
    .map-container {
      width: 100%;
      height: 400px;
      border-radius: var(--radius-20);
      overflow: hidden;
      box-shadow: var(--shadow-1);
      margin-top: 50px;
    }

    .map-container iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

    /* Redes sociales */
    .social-list-2 {
      display: flex;
      gap: 20px;
      margin-top: 20px;
    }

    .social-link-2 {
      font-size: 2rem;
      color: var(--rich-black-fogra-29);
      transition: color 0.3s, transform 0.3s;
    }

    .social-link-2:hover {
      color: var(--oxford-blue);
      transform: translateY(-2px);
    }

    /* Adaptación a dispositivos móviles */
    @media (max-width: 768px) {
      .contact-info,
      .contact-form-wrapper {
        flex: 1 1 100%;
      }
    }