/* --- Card Contacto Moderno --- */
.card-contacto {
  /* background: linear-gradient(135deg, #e8f5e9 80%, #d3d6cf 100%); */
  padding: 2.5rem 2rem 2rem 2rem;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(52,73,36,0.10), 0 1.5px 6px rgba(52,73,36,0.08);
  text-align: left;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: visible;
}
.card-contacto:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 32px rgba(52,73,36,0.16), 0 2px 8px rgba(52,73,36,0.10);
}
.contacto-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contacto-icon-main {
  background: #fff;
  border-radius: 50%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(52,73,36,0.10);
}
.contacto-icon-main img {
  width: 32px;
  height: 32px;
}
.contacto-titulo {
  font-size: 2.1rem;
  font-weight: 700;
  color: #344924;
  margin: 0;
  text-shadow: none;
}
.contacto-info-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contacto-info-row {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
}
.contacto-icon-circle {
  background: #fff;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(52,73,36,0.08);
  flex-shrink: 0;
}
.contacto-icon-circle img {
  width: 22px;
  height: 22px;
}
.contacto-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.contacto-label-text {
  font-weight: 700;
  color: #344924;
  font-size: 1.08rem;
  margin-bottom: 0.1rem;
}
.contacto-lista-simple {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 1.08rem;
  color: #344924;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.contacto-lista-simple li a {
  color: #344924;
  text-decoration: none;
  transition: color 0.2s;
}
.contacto-lista-simple li a:hover {
  color: #96C063;
  text-decoration: underline;
}
.contacto-direccion {
  font-size: 1.05rem;
  color: #344924;
  margin-bottom: 0.2rem;
}
.contacto-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1.05rem;
  color: #344924;
  margin-top: 0.2rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
.contacto-maps-link img {
  width: 20px;
  height: 20px;
}
.contacto-maps-link:hover {
  color: #96C063;
}
/* --- Contacto personalizado --- */
.contacto-titulo {
  margin-bottom: 18px;
}

.contacto-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contacto-label {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.contacto-label-text {
  font-weight: 600;
}

.contacto-item {
  margin-left: 28px;
  margin-bottom: 2px;
}

.contacto-item-mb {
  margin-bottom: 10px;
}

.icono-contacto {
  vertical-align: middle;
  margin-right: 6px;
  width: 24px;
  height: 24px;
}

.qr-contacto {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: auto;
  aspect-ratio: 1/1;
  background: transparent;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-contacto-img {
  width: 90%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  display: block;
}

@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Darker Grotesque';
  src: url('../fonts/DarkerGrotesque-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'DM Sans';
  src: url('../fonts/DMSans-Bold.ttf') format('truetype');
  font-weight: 700;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* outline: 1px solid rgba(255, 0, 0, 0.1);  */
}

.hero,
.nosotros-img {
  min-height: 100vh;
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 768px) {

  .hero-img {
    min-height: 40vh !important;
    height: auto !important;
    padding: 0 !important;
  }
  .hero-card-img {
    height: 40vh !important;
    object-fit: cover;
  }
  
  .hero-card {
    margin-top: 100px !important;
    height: auto !important;
  }

  .nosotros-img {
    min-height: 40vh !important;
    height: auto !important;
    padding: 0 !important;
  }
  .nosotros-card-img {
    height: 40vh !important;
    object-fit: cover;
  }
}

html{
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #344924;
  max-width: 100%;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Darker Grotesque', sans-serif;
}

h1, h2{
  text-shadow: 0px 4px 4px #00000040;
}

/* Contenedor general */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 0 15px; 
  box-sizing: border-box;
}


header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #d3d6cf;
  transition: transform 0.4s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
  /* position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #d3d6cf;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

header.hide-navbar {
  transform: translateY(-100%);
}

.topbar {
  background-color: #344924;
  padding: 5px 0;
  font-size: 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  position: relative;
  box-sizing: border-box;
}


.logo img {
  height: 100px; 
  width: auto;
  display: block;
  padding: 5px 15px 5px 15px;
}

nav {
  position: relative;
}

.nav-wrapper {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links {
  display: flex;
  gap: 80px;
  list-style: none;
  margin-right: 19px;
}

.nav-links li a {
  font-family: "Darker Grotesque", Helvetica;
  text-decoration: none;
  color: #344924;
  font-weight: bold;
  transition: color 0.3s ease;
  line-height: 120%;
  font-size: 28px;
}

.nav-links li a:hover {
  color: #96C063;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #96C063;
  cursor: pointer;
  padding: 0 15px;
}

img {
  max-width: 100%;
  height: auto;
  display: block; /* Evita que las imágenes desborden */
}

/* Hero */
.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
}

.hero-card {
  width: 100%;
  /* max-width: 1600px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  background: none;
}

.hero-card-img {
  width: 100%;
  max-height: 100vh;
  height: auto;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.hero,
.section {
  padding-top: 100px;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.hero-text{
  margin-left: 10%;
  margin-right: 10%;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.inicio h1{
    padding: 20px;
    text-align: center;
    font-weight: 944;
    font-size: 48px;
    line-height: 120%;
}

.inicio p{
    font-family: "Darker Grotesque", Helvetica;
    font-weight: 600;
    font-size: 32px !important;
    text-align: center !important;
    line-height: 120% !important;
}

.container-nosotros{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0px 50px;
    position: relative;
    flex: 0 0 auto;
}

.nosotros-img {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  padding: 0;
}

.nosotros-card {
  width: 100%;
  /* max-width: 1600px; */
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  background: none;
}

.nosotros-card-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -1px;
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.inicio {
  background-color: #d3d6cf;
}

.hero-content p {
  font-size: 1.2rem;
}

.section {
  padding: 20px 20px;
}

.nosotros {
  background-color: #d3d6cf;
}

.nosotros h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #344924;
}

/* .nosotros .intro {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 1rem;
} */

.nosotros p {
  font-family: "DM Sans", Helvetica;
  /* max-width: 900px; */
  margin: 0 auto 1rem auto;
  line-height: 120%;
  font-size: 24px;
  font-weight: 500;
  color: #344924;
  text-align: center;
}

.principios {
  background-color: #d3d6cf;
}


.principios h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 2rem;
  color: #344924;
  text-shadow: none;
}

.grid-principios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.titulo-decorado {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 2rem;
}

.titulo-decorado::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 14%;
    transform: translateX(-50%);
    width: 28%;
    height: 20px;
    background-color: #96C063;
}

.principio {
  background-color: #e8f5e9;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
  overflow: hidden;
}

.card-inner {
  transition: transform 0.3s ease;
}

.principio:hover .card-inner {
  transform: scale(1.1);
}

.principio:hover {
  transform: translateY(-5px);
}


.principio h3 {
  font-family: "DM Sans", Helvetica;
  color: #344924;
  margin-bottom: 0.5rem;
  font-size: 24px;
  margin-top: 1rem;
  margin-bottom: 16px;
}

.principio p {
  font-size: 24px;
  color: #344924;
  line-height: 120%;
  margin-bottom: 4rem;
}


.entidad {
  background-color: #f6f6f6;
}

.entidad h2 {
  font-size: 36px;
  text-shadow: none;
  text-align: left;
  color: #344924;
  margin-bottom: 2rem;
}

.entidad-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.entidad-texto {
  font-weight: 400;
  flex: 1 1 50%;
  font-size: 24px;
  color: #344924;
  line-height: 120%;
  text-align: left;
}

.entidad-imagen {
  flex: 1 1 40%;
  text-align: center;
}

.entidad-imagen img {
  max-width: 100%;
  border-radius: 10px; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.productos {
  background-color: #f6f6f6;
}

.productos h2 {
  text-align: left;
  color: #344924;
  font-size: 36px;
  text-shadow: none;
  line-height: 120%;
}

.producto-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}


.producto-texto {
  flex: 1 1 50%;
  font-size: 24px;
  color: #344924;
  line-height: 120%;
  text-align: left;
}

.producto-texto p {
    margin-top: 3.5rem;
}

.producto-imagen {
  flex: 1 1 40%;
  text-align: center;
}

.producto-imagen img {
  max-width: 100%;
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
}

.prod:hover{
  transform: scale(1.2);
}

.comercializacion {
  background-color: #d3d6cf;
}

.comercializacion h2 {
  text-align: center;
  font-size: 48px;
  color: #344924;
  margin-bottom: 1rem;
  text-shadow: none;
  line-height: 120%;
}

.comercializacion p{
  font-size: 28px;
  line-height: 120%;
  margin-bottom: 3.5rem;
  text-align: center;
}

.intro-com {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #344924;
}

.grid-comercializacion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-bottom: 3rem;
}

.item-com {
  background-color: #e8f5e9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-texto {
  padding: 1rem;
  text-align: center;
}


.item-com:hover {
  transform: scale(1.05);
}

.item-com h3 {
  font-family: "DM Sans", Helvetica;
  color: #344924;
  margin-bottom: 0.8rem;
  font-size: 24px;
}

.item-com img {
  width: 100%;
  height: 280px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  display: block;
}

.item-com p {
  font-size: 24px;
  line-height: 120%;
  color: #344924;
  margin-top: 2rem;
}

.contacto {
  background-color: #f6f6f6;
  text-align: center;
}

.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 2rem;
}

.card-contacto {
  background-color: #e8f5e9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s;
  overflow: hidden;
}

.card-contacto ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-contacto li {
  /* margin-bottom: 0.8rem; */
  line-height: 120%;
}

.mapa-contacto iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contacto h2 {
  color: #344924;
  margin-bottom: 1rem;
  text-shadow: none;
  font-size: 36px;
}


.qr-contacto:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.qr-placeholder {
  background-color: #fff;
  border: 2px dashed #ccc;
  border-radius: 8px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: italic;
  color: #999;
}


.card-contacto:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.info-contacto {
  list-style: none;
  padding: 0;
  line-height: 120%;
  width: min-content;
}

.info-contacto li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  /* margin-bottom: 1rem; */
  font-size: 24px;
}

.info-contacto li img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.info-contacto li a {
  font-size: 24px;
  color: #344924;
  text-decoration: none;
}

.info-contacto li span {
  font-size: 24px;
  color: #344924;
  text-decoration: none;
}

.info-contacto li a:hover {
  text-decoration: underline;
}

.info-contacto a {
  color: #344924;
  text-decoration: none;
}

.info-contacto a:hover {
  text-decoration: underline;
}

.siguenos h2{
  font-size: 36px;
  text-shadow: none;
}

.siguenos {
  margin-left: 2rem;
  margin-top: 2rem;
  text-align: left;
  grid-column: span 2;
}

.redes-sociales {
  display: flex;
  justify-content: left;
  gap: 1.2rem;
}

.redes-sociales img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* .redes-sociales img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 6px;
  transition: all 0.3s ease;
  filter: grayscale(100%);
  opacity: 0.75;
} */

.redes-sociales a img {
  display: block;
}

.redes-sociales a:hover img {
   transform: scale(1.15);
  /* filter: grayscale(0%) brightness(1.2);
  opacity: 1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2); */
}

.idioma-selector {
  font-family: "Darker Grotesque", Helvetica;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #f6f6f6;
}
.idioma {
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}


.idioma:hover,
.idioma.activo {
  opacity: 1;
  color: #f6f6f6;
}

footer {
  background-color: #344924;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

.carousel-wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
/* 
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
} */

.carousel-track.grabbing {
  cursor: grabbing;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

.carousel-card {
  flex: 0 0 100%; 
  padding: 0 10px;
  box-sizing: border-box;
}

.carousel-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #344924;
  color: white;
  border: none;
  font-size: 2rem;
  padding: 0 15px;
  cursor: pointer;
  z-index: 2;
  border-radius: 5px;
  opacity: 0.8;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn.left {
  left: 10px;
}

.carousel-btn.right {
  right: 10px;
}

#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #344924;
  color: white;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn svg {
  display: block;
  width: 28px;
  height: 28px;
}

#scrollTopBtn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

#scrollTopBtn:hover {
  background-color: #69795D;
}

@media (max-width: 768px) {

  .entidad-content {
    flex-direction: column;
  }

  .siguenos {
    margin-left: 0px;
    margin-top: 0px;
  }

  .entidad-texto,
  .entidad-imagen {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .carousel-card img {
    max-width: 100%;
    height: auto;
  }

  .nav-links {
    flex-direction: column; /* Cambia a diseño vertical en pantallas pequeñas */
    width: 100%; /* Asegúrate de que ocupe todo el ancho de la pantalla */
    box-sizing: border-box;
  }

  .menu-toggle {
    display: block; /* Muestra el botón del menú en pantallas pequeñas */
  }
}

@media (max-width: 768px) {
  .contacto-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: stretch;
  }
  .card-contacto {
    width: 100%;
    min-width: 0;
    max-width: 500px;
    margin: 0 auto 24px auto;
  }
  .qr-contacto {
    justify-content: center;
    align-items: center;
    margin: 0 auto 24px auto;
    width: 100%;
    max-width: 320px;
  }
  .qr-contacto-img {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
  .contacto-info-block, .contacto-info-row, .contacto-info-text {
    width: 100%;
    min-width: 0;
    word-break: break-word;
  }
  .contacto-lista-simple {
    flex-direction: column;
    gap: 0.2rem;
    font-size: 1rem;
    word-break: break-all;
  }
  .contacto-lista-simple li a {
    font-size: 1rem;
    word-break: break-all;
    display: inline-block;
  }
}

@media (max-width: 992px) {
  .grid-principios {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-principios {
    grid-template-columns: 1fr;
  }
    .hero-card {
      margin-top: 100px !important;
      height: auto !important;
    }
}


@media (max-width: 768px) {
  .producto-content {
    flex-direction: column;
  }

  .producto-texto,
  .producto-imagen {
    flex: 1 1 100%;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .nav-wrapper {
    position: static;
    transform: none;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: #d3d6cf;
    position: absolute;
    top: 80px;
    right: 0;
    width: 215px;
    padding: 1rem;
    gap: 30px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .topbar-content {
    flex-direction: column;
    align-items: flex-end;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-wrapper {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  .carousel-track {
    width: 100% !important;
    gap: 0 !important;
    justify-content: flex-start !important;
  }
  .carousel-card {
    flex: 0 0 100% !important;
    padding: 0 !important;
  }
  .carousel-card img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: block;
  }

   .entidad-imagen {
    width: 100% !important;
    flex: 1 1 100% !important;
    max-width: 100% !important;
    text-align: initial !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
  }
}