
    /* ----------------------------------------------------------------
       RESET / BASE
    ---------------------------------------------------------------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    /* ----------------------------------------------------------------
       BOTONES DE IDIOMA
    ---------------------------------------------------------------- */
    .lang-select {
      background: #EFEFEF;
      padding: 10px;
      text-align: right;
    }
    .lang-select button {
      cursor: pointer;
      padding: 8px 12px;
      margin-left: 5px;
      border: 1px solid #ccc;
      background: #fff;
    }
    .lang-select .active-lang {
      background: #0A2F5A;
      color: #fff;
      border: none;
    }

    /* ----------------------------------------------------------------
       ESTILOS GENERALES DE LA PÁGINA
    ---------------------------------------------------------------- */
    header {
      background: #0A2F5A; /* color de fondo principal */
      color: #fff;
      padding: 20px;
    }
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }
    .nav-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }
    .menu {
      display: flex;
      gap: 20px;
    }
    .menu a:hover {
      text-decoration: underline;
    }

    .hero {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 60px 20px;
      background: #F1F1F1;
    }
    .hero h1 {
      font-size: 2.2rem;
      margin-bottom: 20px;
    }
    .hero p {
      max-width: 700px;
      margin-bottom: 30px;
    }
    .cta-button {
      background: #0A2F5A;
      color: #fff;
      padding: 15px 30px;
      border-radius: 5px;
      display: inline-block;
      transition: background 0.3s;
    }
    .cta-button:hover {
      background: #074285;
    }

    section {
      padding: 60px 20px;
    }
    section h2 {
      font-size: 1.8rem;
      margin-bottom: 20px;
      text-align: center;
    }

    /* Sobre nosotros */
    .about-us {
      text-align: center;
      max-width: 800px;
      margin: 0 auto;
      margin-bottom: 40px;
    }

    
	/* 1. Aseguramos que las tarjetas .access-way se expandan a la misma altura */
	.access-ways {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 20px;
	  justify-content: center;

	  /* Para igualar la altura de las tarjetas */
	  align-items: stretch;
	}

	/* 2. Cada tarjeta .access-way en columnas */
	.access-way {
	  /* Ajustar su tamaño */
	  flex: 1 1 300px;
	  min-width: 280px;
	  max-width: 350px;

	  display: flex;             /* Para ordenar en columna */
	  flex-direction: column;
	  background: #FFF;
	  padding: 20px;
	  border-radius: 5px;
	  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

	  text-align: center; /* ya lo tenías */
	}

	/* 3. El botón va al fondo con margin-top: auto */
	.product-card a.button_link {
		background: #d46193; /* Color deseado para button_link */
		margin-top: auto;         /* Empuja el botón hacia abajo */
	    color: #fff;
	    padding: 10px 20px;
	    border-radius: 5px;
	    transition: background 0.3s;
	    text-decoration: none;   /* Quitas el subrayado */
	}
	
	.product-card a.button_link:hover {
      background: #e17ba7;
    }
	
	.access-way a.button_no_link {
	  margin-top: auto;         /* Empuja el botón hacia abajo */
	  background: #0A2F5A; 
	  color: #fff;
	  padding: 10px 20px;
	  border-radius: 5px;
	  transition: background 0.3s;
	  text-decoration: none;   /* Quitas el subrayado */
	}

	.access-way a.button_no_link:hover {
	  background: #074285;
	}

    .access-way h3 {
      margin-bottom: 15px;
    }
    .access-way p {
      margin-bottom: 20px;
      font-size: 0.95rem;
    }
    .access-way a {
      display: inline-block;
      background: #0A2F5A;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .access-way a:hover {
      background: #074285;
    }

    /* Productos destacados */
    
	
	.products-container {
	  display: flex;
	  flex-wrap: wrap;
	  gap: 20px;
	  justify-content: center;

	  /* Para igualar altura de las tarjetas */
	  align-items: stretch;
	}

	.product-card {
	  flex: 1 1 300px;
	  min-width: 280px;
	  max-width: 350px;

	  display: flex;            /* En columna */
	  flex-direction: column;
	  background: #FFF;
	  padding: 20px;
	  border-radius: 5px;
	  box-shadow: 0 2px 5px rgba(0,0,0,0.1);

	  text-align: center;
	}

	.product-card a.button_no_link {
	  margin-top: auto;        /* Empuja el botón a la parte inferior */
	  background: #0A2F5A;
	  color: #fff;
	  padding: 10px 20px;
	  border-radius: 5px;
	  transition: background 0.3s;
	  text-decoration: none;
	}

	.product-card a.button_no_link:hover {
	  background: #074285;
	}
	
    .product-card h3 {
      margin-bottom: 15px;
    }
    .product-card p {
      margin-bottom: 20px;
    }
    .product-card a {
      display: inline-block;
      background: #0A2F5A;
      color: #fff;
      padding: 10px 20px;
      border-radius: 5px;
      transition: background 0.3s;
    }
    .product-card a:hover {
      background: #074285;
    }

    /* Clientes y presencia */
    .clients {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    /* Contacto */
    .contact-form {
      max-width: 600px;
      margin: 0 auto;
    }
    .contact-form form {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .contact-form label {
      font-weight: bold;
      margin-bottom: 5px;
    }
    .contact-form input,
    .contact-form textarea {
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      font-family: inherit;
      resize: vertical;
    }
    .contact-form button {
      align-self: flex-start;
      padding: 10px 20px;
      background: #0A2F5A;
      color: #fff;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.3s;
    }
    .contact-form button:hover {
      background: #074285;
    }

    /* Footer */
    footer {
      background: #0A2F5A;
      color: #fff;
      text-align: center;
      padding: 20px 10px;
    }

    /* Ocultar secciones según idioma */
    .hidden {
      display: none;
    }

    /* MEDIA QUERIES */
    @media (max-width: 768px) {
      .nav-bar {
        flex-direction: column;
        gap: 10px;
      }
      .hero {
        padding: 40px 20px;
      }
      .hero h1 {
        font-size: 1.8rem;
      }
      .products-container,
      .access-ways {
        flex-direction: column;
        align-items: center;
      }
    }
  