/* -------------------- FUENTES -------------------- */
@font-face {
  font-family: 'argesta_displayregular';
  src: url('./fnts/a_eot.eot');
  src: url('./fnts/a_.eot?#iefix') format('embedded-opentype'),url('./fnts/a_woff2.woff2') format('woff2'),url('./fnts/a_woff.woff') format('woff'),url('./fnts/a_ttf.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;

}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* -------------------- CSS Reset -------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video { margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit;vertical-align: baseline;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section { display: block; }body { line-height: 1; }ol,ul { list-style: none; }blockquote,q { quotes: none; }blockquote:before,blockquote:after,q:before,q:after {  content: '';  content: none;}table {  border-collapse: collapse;  border-spacing: 0;}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* -------------------- ESTILOS GENERALES ---------------------- */
:root {
  --color-base: #897E7A;
  --color-base-hover: #554f4c;
  
  --color-titulos: #3a332f;
  --color-claro: #E1D5C7;
  --color-verde: #909986;
  --color-verde-oscuro: #596051;
  --color-verde-active: #3b3f36;
  --color-negro: #000000;
  
  --color-blanco: #ffffff;
  --color-blanco-hover: #cecece;
  --color-blanco-active: #696969;

  
  --color-desplegable: #777;
  --color-desplegable-hover: #111;
  --color-desplegable-active: #555;
  
  --color-fondo: #FFFFFF;
  --color-carbon: #222222;
  
  --box-shadow-soft: 0 4px 8px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease-in-out;
}
* { 
  -webkit-box-sizing: border-box !important; 
  box-sizing: border-box !important; 
  scroll-behavior: smooth;
}
.fnt_argesta_reg {
  font-family: "argesta_displayregular", Helvetica, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
  font-weight: 400;
  font-style: normal;
}
a {
  padding: 5px;
  text-decoration: none;
  color: var(--color-blanco);
  -webkit-transition: color 0.3s;
  -o-transition: color 0.3s;
  transition: color 0.3s;
}
a:hover  { 
  color: var(--color-carbon); 
}
a:active { 
  color: var(--color-blanco); 
}
body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: var(--color-negro);
  font-family: Arial, sans-serif;
  background-color: var(--color-fondo);
  font-size: calc(1rem + 0.5vw);
}
small,small a {
  color: #E1D5C7;
  text-align: center;
  font-size: 0.9rem;
}
small a:hover {
  color: #fff0de;
}
.pagination {
  padding: 20px 0 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.pagination a {
  text-align: center;
  color: var(--color-base-hover);
}
.pagination a:hover {
  color: var(--color-negro) !important;
}
.active {
  color: var(--color-negro) !important;
  text-underline-offset: 2px;
}
/* -------------------- FIN ESTILOS GENERALES ---------------------- */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* -------------------- HEADER ---------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000000;
  background: transparent;
}
#nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}
#nav-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
#nav-menu ul li {
  margin: 5px 15px;
  position: relative;
}
#nav-menu ul li a {
  font-size: 1.1em;
  text-decoration: none;
  color: var(--color-base);
  -webkit-transition: color ease-out 0.3s;
  -o-transition: color ease-out 0.3s;
  transition: color ease-out 0.3s;
  padding: 10px 15px;
  display: block;
}
ul li p {
  color: var(--color-base);
  -webkit-transition: color ease-out 0.3s;
  -o-transition: color ease-out 0.3s;
  transition: color ease-out 0.3s;
}
#nav-menu ul li a:hover,ul li p:hover,.desplegable_categorias p:hover {
  -webkit-transition: color ease-in 0.1s;
  -o-transition: color ease-in 0.1s;
  transition: color ease-in 0.1s;
  color: var(--color-base-hover);
}
#nav-menu ul li a:active,ul li p:active {
  -webkit-transition: color ease-in 0.1s;
  -o-transition: color ease-in 0.1s;
  transition: color ease-in 0.1s;
  color: var(--color-base);
}
.desplegable_categorias {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.desplegable_categorias p {
  cursor: pointer;
}
.desplegable_categorias ul {
  cursor: pointer;
  position: absolute;
  top: -100%;
  left: 0;
  z-index: -1000;
  opacity: 0;
  list-style: none;
  padding: 10px 0;
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(90deg) translateX(-174%);
  -ms-transform: rotate(90deg) translateX(-174%);
  transform: rotate(90deg) translateX(-174%);
  -webkit-transition: opacity ease-out 0s, -webkit-transform ease-out 0.2s;
  transition: opacity ease-out 0s, -webkit-transform ease-out 0.2s;
  -o-transition: transform ease-out 0.2s, opacity ease-out 0s;
  transition: transform ease-out 0.2s, opacity ease-out 0s;
  transition: transform ease-out 0.2s, opacity ease-out 0s, -webkit-transform ease-out 0.2s;
}
.desplegable_categorias ul li {
  margin: 0;
}
.desplegable_categorias ul li a {
  padding: 10px 15px;
  color:  var(--color-desplegable) !important;
}
.desplegable_categorias ul li a:hover {
  color:  var(--color-desplegable-hover) !important;
}
.desplegable_categorias ul li a:active {
  color:  var(--color-desplegable-active) !important;
}
.desplegable_categorias:hover ul {
  display: block !important;
  top: 100%;
  z-index: 100000000;
  opacity: 1;
  -webkit-transform: rotate(0) translateX(0);
  -ms-transform: rotate(0) translateX(0);
  transform: rotate(0) translateX(0);
  -webkit-transition: opacity ease-in 0.5s, -webkit-transform ease-in 0.3s;
  transition: opacity ease-in 0.5s, -webkit-transform ease-in 0.3s;
  -o-transition: transform ease-in 0.3s, opacity ease-in 0.5s;
  transition: transform ease-in 0.3s, opacity ease-in 0.5s;
  transition: transform ease-in 0.3s, opacity ease-in 0.5s, -webkit-transform ease-in 0.3s;
}
#btn_menu_movil {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
#btn_menu_movil span {
  width: 25px;
  height: 3px;
  background: var(--color-negro);
  margin: 4px 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
/* -------------------- FIN HEADER ---------------------- */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ---------------------- MAIN -------------------------- */
main {
  margin-top: 4.5vh;
  width: 100%;
  min-height: 100vh;
}
#n_mrg {
  margin-top: 0 !important;
}
.h1_search {
  font-family: Serif;
  text-align: center;
  font-weight: 900;
  color: var(--color-base-hover);
  font-size: calc(1rem + 2.5vw);
}
.barra_busqueda {
  width: 100%;
  max-width: 800px;
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  padding: 5px;
}
.barra_busqueda input {
  width: 90%;
  max-width: 500px;
  min-height: 38px;
  border: 0;
  margin: 5px;
  padding: 5px;
  font-size: 1rem;
  color: var(--color-base-hover);
  border-bottom: 1px solid var(--color-base);
}
.barra_busqueda input:focus {
  outline: 0;
  color: var(--color-carbon);
}
.barra_busqueda input::-webkit-input-placeholder {
  font-size: 1rem;
  color: var(--color-base);
}
.barra_busqueda input::-moz-placeholder {
  font-size: 1rem;
  color: var(--color-base);
}
.barra_busqueda input:-ms-input-placeholder {
  font-size: 1rem;
  color: var(--color-base);
}
.barra_busqueda input::-ms-input-placeholder {
  font-size: 1rem;
  color: var(--color-base);
}
.barra_busqueda input::placeholder {
  font-size: 1rem;
  color: var(--color-base);
}
.barra_busqueda input:focus::-webkit-input-placeholder {
  font-size: 1rem;
  color: #fff;
}
.barra_busqueda input:focus::-moz-placeholder {
  font-size: 1rem;
  color: #fff;
}
.barra_busqueda input:focus:-ms-input-placeholder {
  font-size: 1rem;
  color: #fff;
}
.barra_busqueda input:focus::-ms-input-placeholder {
  font-size: 1rem;
  color: #fff;
}
.barra_busqueda input:focus::placeholder {
  font-size: 1rem;
  color: #fff;
}
.barra_busqueda button {
  width: 90%;
  max-width: 150px;
  min-height: 38px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  color: var(--color-base-hover);
  font-size: calc(1rem + 0.5vw);
  background-color: var(--color-claro);
  -webkit-transition: background-color ease-out 0.3s, color ease-out 0.3s;
  -o-transition: background-color ease-out 0.3s, color ease-out 0.3s;
  transition: background-color ease-out 0.3s, color ease-out 0.3s;
}
.barra_busqueda button:hover {
  color: white;
  background-color: var(--color-base);
  -webkit-transition: background-color ease-in 0.1s, color ease-in 0.1s;
  -o-transition: background-color ease-in 0.1s, color ease-in 0.1s;
  transition: background-color ease-in 0.1s, color ease-in 0.1s;
}
.barra_busqueda button:active {
  background-color: var(--color-base-hover);
  -webkit-transition: background-color ease-in 0.1s, color ease-in 0.1s;
  -o-transition: background-color ease-in 0.1s, color ease-in 0.1s;
  transition: background-color ease-in 0.1s, color ease-in 0.1s;
}
.centrar {
  text-align: center;
}
/* ---------------------- FIN MAIN -------------------------- */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ---------------------- FOOTER -------------------------- */
footer {
  width: 100%;
  height: auto;
  padding: 3px;
  font-size: calc(1rem + 0.2vw);
  word-break: break-all;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-line-pack: center;
  align-content: center;
  color: var(--color-blanco);
  background: var(--color-claro);
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
}
footer small {
  width: 100%;
  font-size: 0.7rem;
  color: var(--color-base);
}
.footer_section {
  max-width: 250px;
  width: 100%;
  text-align: center;
  color: var(--color-carbon);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.footer_section h2 {
  width: 100%;
  margin-bottom: 7px;
  font-size: calc(1rem + 0.5vw);
  font-family: Verdana;
  font-weight: 700;
}
.footer_section ul li {
  margin-bottom: 5px;
}
.footer_section ul li a {
  color: var(--color-base);
}
.footer_section ul li a:hover {
  color: var(--color-base-hover);
}
._contact {
  max-width: 100%;
  width: 100%;
}
._contact address {
  max-width: 950px;
}
._contact address {
  width: 100%;
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
._contact address p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 70px;
}
._contact address p a,._contact address p {
  font-size: 1rem;
  color: var(--color-base);
}
._contact address p a:hover,._contact address p:hover {
  font-size: 1rem;
  color: var(--color-base-hover);
}
._contact address p span:nth-child(1) {
  font-weight: 600;
}
.feedback {
  color: red;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
.titulo_contactos {
  color: var(--color-titulos) !important;
}
.social_links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
}
.estilo_svgs {
  width: 38px;
  height: auto;
  fill: var(--color-base);
  -webkit-transition: background-color ease-out 0.3s, fill ease-out 0.3s, -webkit-transform ease-out 0.1s;
  transition: background-color ease-out 0.3s, fill ease-out 0.3s, -webkit-transform ease-out 0.1s;
  -o-transition: background-color ease-out 0.3s, fill ease-out 0.3s, transform ease-out 0.1s;
  transition: background-color ease-out 0.3s, fill ease-out 0.3s, transform ease-out 0.1s;
  transition: background-color ease-out 0.3s, fill ease-out 0.3s, transform ease-out 0.1s, -webkit-transform ease-out 0.1s;
}
.estilo_svgs:hover {
  -webkit-transform: rotate(5deg);
  -ms-transform: rotate(5deg);
  transform: rotate(5deg);
  border-radius: 10px;
  background-color: #fff3;
  -webkit-transition: background-color ease-in 0.1s, fill ease-in 0.1s, -webkit-transform ease-in 0.2s;
  transition: background-color ease-in 0.1s, fill ease-in 0.1s, -webkit-transform ease-in 0.2s;
  -o-transition: background-color ease-in 0.1s, fill ease-in 0.1s, transform ease-in 0.2s;
  transition: background-color ease-in 0.1s, fill ease-in 0.1s, transform ease-in 0.2s;
  transition: background-color ease-in 0.1s, fill ease-in 0.1s, transform ease-in 0.2s, -webkit-transform ease-in 0.2s;
}
.estilo_svgs:active {
  -webkit-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  transform: rotate(-5deg);
  -webkit-transition: fill ease-in 0.1s, -webkit-transform ease-in 0.2s;
  transition: fill ease-in 0.1s, -webkit-transform ease-in 0.2s;
  -o-transition: fill ease-in 0.1s, transform ease-in 0.2s;
  transition: fill ease-in 0.1s, transform ease-in 0.2s;
  transition: fill ease-in 0.1s, transform ease-in 0.2s, -webkit-transform ease-in 0.2s;
}
._facebook:hover {
  fill: #4141a1
}
._instagram:hover {
  fill: #982556;
}
._facebook:active { 
  fill: var(--color-base); 
}
._instagram:active { 
  fill: var(--color-base); 
}
._social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
._social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
/* ---------------------- FIN FOOTER -------------------------- */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* INDEX.PHP -------------------------------------------------------------------------------------------- INDEX.PHP */
#hero-description h1 {
  font-size: calc(1rem + 1.9vw) !important;
}
#hero-description p {
  font-size: calc(1rem + 0.4vw) !important;
}
.hero-video {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-blanco);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
}
.btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 15px;
}
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--color-carbon);
  background-color: var(--color-claro);
  border: 1px solid var(--color-base);
  border-radius: 5px;
  text-decoration: none;
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
  text-align: center;
}
@media only screen and (max-width: 420px) {
  .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: var(--color-blanco);
    background-color: var(--color-base);
    border: 0;
    border-radius: 5px;
    text-decoration: none;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    text-align: center;
  }
}
.btn:hover,.btn:focus {
  background-color: var(--color-blanco-hover);
  outline: none;
}
.services {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 1%;
}
.services h2 {
  width: 100%;
  margin-bottom: 30px;
  color: var(--color-base);
  font-size: calc(1rem + 2.5vw);
}
.service-item {
  max-width: 350px;
  min-height: 250px;
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  opacity: 0;
  padding: 20px;
  background: white;
  border-radius: 10px;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.service-item h3 {
  font-size: 1.8rem;
  color: #546434;
}
.service-item p {
  font-size: 1.2rem;
  color: #666;
}
.service-item a {
  color: var(--color-verde);
  text-decoration: none;
  font-weight: bold;
}
.service-item a:hover {
  color: var(--color-base-hover);
  text-decoration: underline;
}
.service-item a:active {
  color: var(--color-base-active);
}
.service-item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.testimonials {
  padding: 50px 20px;
  background-color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  gap: 1%;
}
.testimonials h2 {
  width: 100%;
  margin-bottom: 30px;
  color: var(--color-base);
  font-size: calc(1rem + 2.5vw);
}
.testimonial-item {
  max-width: 350px;
  min-height: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
}
.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 10px;
}
.testimonial-item p {
  font-size: 1.2rem;
  font-style: italic;
  color: #666;
}
.stars {
  color: #ad9422;
  font-size: 1.2rem;
  margin: 10px 0;
}
.testimonial-item h4 {
  font-size: 1rem;
  color: #333;
}
.testimonial-item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.recent-articles {
  padding: 50px 20px;
  background-color: #f9f9f9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
}
.recent-articles h2 {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
  color: var(--color-base);
  font-size: calc(1rem + 2.5vw);
}
.article-item {
  max-width: 250px;
  margin-bottom: 20px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  opacity: 0;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: -webkit-transform ease-out 0.3s;
  transition: -webkit-transform ease-out 0.3s;
  -o-transition: transform ease-out 0.3s;
  transition: transform ease-out 0.3s;
  transition: transform ease-out 0.3s, -webkit-transform ease-out 0.3s;
}
.article-item:hover {
  -webkit-transform: translateY(-10px) !important;
  -ms-transform: translateY(-10px) !important;
  transform: translateY(-10px) !important;
  -webkit-transition: -webkit-transform ease-in 0.1s;
  transition: -webkit-transform ease-in 0.1s;
  -o-transition: transform ease-in 0.1s;
  transition: transform ease-in 0.1s;
  transition: transform ease-in 0.1s, -webkit-transform ease-in 0.1s;
}
.article-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 10px;
}
.article-item h3 {
  color: #333;
  font-size: 1.3rem;
  margin-top: 5px;
  margin-bottom: 15px;
  text-align: center;
}
.article-item a {
  color: var(--color-carbon);
  text-align: center;
  text-decoration: none;
}
.article-item p {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}
.article-item a:hover {
  color: var(--color-base);
}
.article-item.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/* FIN INDEX.PHP ------------------------------------------------------------------------------------- FIN INDEX.PHP */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* SEARCH.PHP ------------------------------------------------------------------------------------- SEARCH.PHP */
#search_section {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 95%;
  max-width: 1250px;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -ms-flex-line-pack: baseline;
  align-content: baseline;
  gap: 5px;
  
}
/* FIN SEARCH.PHP ------------------------------------------------------------------------------------- FIN SEARCH.PHP */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* SERVICES.PHP ------------------------------------------------------------------------------------- SERVICES.PHP */
.services-page {
  margin: 0 auto;
}
.services-page   { 
  color: var(--color-base); 
}
.services-page p { 
  color: var(--color-carbon); 
}
.services-page section {
  margin: 0 auto;
  height: auto;
}
.services-page p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 5px;
}
.services-page p a {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: var(--color-base);
}
.services-page p a:hover {
  background-color: var(--color-blanco);
}
.services-page p a:active {
  background-color: var(--color-blanco);
  background-color: var(--color-base);
}
.services-list {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.services-list h2 {
  width: 100%;
  font-weight: 900;
  text-align: center;
  font-size: calc(1.5rem + 4vw);
}
.services-item {
  width: 95%;
  margin: 0 auto;
  padding: 1%;
  margin-bottom: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.services-video {
  max-width: 350px;
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
}
.services-item img {
  width: auto;
  font-size: 0.8rem;
}
._anchos {
  max-width: 500px;
}
._lst_img {
  min-height: initial !important;
  max-height: initial !important;
  min-width: initial !important;
  width: 100% !important;
  max-width: 650px !important;
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
}
.services-img {
  max-width: 400px !important;
  min-height: 500px !important;
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
}
.services-item div {
  padding: 5px;
  max-width: 750px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.services-item h3 {
  width: 100%;
  text-align: center;
  font-size: calc(1rem + 2.9vw);
}
.services-item p {
  margin: 10px auto 0;
  max-width: 350px;
  font-size: 1.3rem;
  text-align: center;
}
._fll_wd_img {
  width: 100%;
  padding: 0;
}
._fll_wd_img img {
  max-width: initial !important;
  max-height: initial !important;
  height: auto !important;
  width: 98% !important;
  -webkit-box-shadow: 0px 0px 10px 1px #0009;
  box-shadow: 0px 0px 10px 1px #0009;
}
._fll_wd_img div {
  padding: 10px;
  width: 95%;
  max-width: 1000px;
  border-radius: 10px;
  background-color: #444c;
  position: absolute;
  display: block;
  -ms-flex-wrap: initial;
  flex-wrap: initial;
}
._fll_wd_img div h3, ._fll_wd_img div p {
  max-width: initial !important;
  width: 100% !important;
  color: var(--color-blanco);
}
.orden_1 { 
  -webkit-box-ordinal-group: 2; 
  -ms-flex-order: 1; 
  order: 1; 
}
.orden_2 { 
  -webkit-box-ordinal-group: 3; 
  -ms-flex-order: 2; 
  order: 2; 
}
.faq {
  width: 95%;
}
.faq h2 {
  width: 100%;
  text-align: center;
  font-size: calc(1.2rem + 3vw);
}
.faq-item {
  margin: 5px auto 30px auto;
}
.faq-item p {
  display: initial;
  padding-left: 2%;
  font-family: Arial;
  font-size: 0.8em;
}
._fll_wd_img .services-video {
  max-width: initial;
  border-radius: initial;
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
}
._fll_wd_img ._anchos {
  max-width: initial;
}
/* FIN SERVICES.PHP ------------------------------------------------------------------------------------- FIN SERVICES.PHP */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* LG  ------------------------------------------------------------------------------------- LG */
.lg {
  width: 100%;
  min-height: 100vh;
  background-color: #f1f1f1;
}
.lg > h2 {
  font-size: calc(1.3em + 2vw);
  text-align: center;
  margin: 15px auto;
}
.lg > div {
  width: 98%;
  max-width: 450px;
  min-height: 500px;
  margin: 0 auto;
}
.lg > div > form,.lg > div > form div {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.lg > div > form div {
  min-height: 40px;
  margin-bottom: 15px;
}
.lg > div > form div label {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 5px;
}
.lg > div > form div input {
  min-height: 40px;
  height: 40px;
  outline: 0;
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #aaaa;
}
.lg > div > form div button {
  min-height: 40px;
  height: 40px;
  outline: 0;
  padding: 5px;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  font-size: 1em;
  border: 1px solid #fff;
  background-color: #0071b3;
  transition: background-color ease-out 0.3s;
}
.lg > div > form div button:hover {
  background-color: coral;
  transition: background-color ease-in 0.1s;
}
.error_message {
  text-align: center;
  margin: 15px auto;
}
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* SHOWARTICLES.PHP ------------------------------------------------------------------------------------- SHOWARTICLES.PHP */
.showArticles {
  background-color: var(--color-fondo);
  color: var(--color-titulos);
}
.showArticles main a {
  padding: 10px 15px;
  margin: 10px auto;
  max-width: 300px;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  background-color: var(--color-base);
  -webkit-transition: var(--transition);
  -o-transition: var(--transition);
  transition: var(--transition);
}
.showArticles main a:hover {
  background-color: var(--color-base-hover);
  color: var(--color-blanco);
}
.showArticles main a:active {
  background-color: var(--color-base);
  color: var(--color-blanco);
}
.showArticles main h1 {
  margin-bottom: 10px;
  text-align: center;
  font-size: calc(1rem + 2vw);
  color: var(--color-base);
}
.showArticles main img {
  max-height: 400px;
  max-width: 95%;
  margin: 0 auto;
  border-radius: 10px;
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
  -webkit-box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
.showArticles main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.container {
  padding: 5px;
  margin: 20px;
  border-radius: 10px;
  background-color: var(--color-blanco);
  -webkit-box-shadow: var(--box-shadow-soft);
  box-shadow: var(--box-shadow-soft);
}
.container h1 {
  margin-bottom: 15px;
  text-align: center;
  font-size: calc(1rem + 1.8vw) !important;
  color: var(--color-titulos);
}
.container p {
  padding: 5%;
  padding-bottom: 10px;
  padding-top: 10px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
  color: var(--color-carbon);
  font-size: 0.8em !important;
}
.container h2 {
  text-align: center;
  -webkit-text-decoration: underline 2px var(--color-base);
  text-decoration: underline 2px var(--color-base);
  text-underline-offset: 3px;
  margin-bottom: 10px;
  margin-top: 50px;
  color: var(--color-base);
  font-size: calc(1rem + 1.4vw) !important;
}
.benefits,.container div {
  padding: 10px;
  margin-top: 15px;
  margin: 10px 2.5%;
  border-radius: 10px;
  background-color: var(--color-blanco);
  -webkit-box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.benefits h3,.container h3 {
  margin-bottom: 10px;
  color: var(--color-base-hover);
  font-size: calc(0.7rem + 1vw) !important;
}
.benefits ul,.container ul {
  list-style: none;
  padding-left: 20px;
}
.benefits ul li,.container ul li {
  margin-bottom: 15px;
  font-size: 0.8em !important;
  color: var(--color-carbon) !important;
}
/* FIN SHOWARTICLES.PHP ------------------------------------------------------------------------------------- FIN SHOWARTICLES.PHP */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* PAGINA DE ERROR ------------------------------------------------------------------------------------- PAGINA DE ERROR */ 
.error-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 80vh;
  text-align: center;
  color: #333;
}
.error-container h1 {
  font-size: 5rem;
  margin: 0;
}
.error-container p {
  font-size: 1.5rem;
}
.error-container a {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.error-container a:hover {
  background-color: #0056b3;
}
/* FIN PAGINA DE ERROR ------------------------------------------------------------------------------------- FIN PAGINA DE ERROR */ 
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* PAGINA DE CONTACTO ------------------------------------------------------------------------------------- PAGINA DE CONTACTO */ 
.contact_n_mg main {
  margin-top: 0;
}
.contact_n_mg {
  background-color: #C4BEBD;
}
.contact_n_mg #nav-menu a,.contact_n_mg #nav-menu ul li p {
  color: var(--color-base-hover) !important;
}
.contact_n_mg #nav-menu a:hover,.contact_n_mg #nav-menu ul li p:hover,.contact_n_mg #nav-menu ul li:hover p:hover {
  color: var(--color-carbon) !important;
}
.contact_n_mg #nav-menu:hover ul li ul li a {
  color: var(--color-base) !important;
}
.contact_n_mg #nav-menu:hover ul li ul li a:hover {
  color: var(--color-carbon) !important;
}
@media only screen and (max-width: 992px) {
  .contact_n_mg a,.contact_n_mg ul li p {
    color: var(--color-base) !important;
  }
}
.cont-contacts {
  width: auto;
  margin: 0 auto;
  max-width: 100%;
}
.contact-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  margin-top: 1.5%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.contact-info {
  width: 90%;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #fffd;
  border-radius: 10px;
  border: 1px solid #0005;
  -webkit-box-shadow: 0px 0px 7px #0008;
  box-shadow: 0px 0px 7px #0008;
}
.contact-info p {
  margin-bottom: 15px;
  color: var(--color-base-hover);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.contact-info p strong {
  font-weight: 600;
  text-align: left;
}
.contact-info a {
  color: var(--color-base-hover);
  -webkit-text-decoration: underline 1px #aaa;
  text-decoration: underline 1px #aaa;
  text-underline-offset: 2px;
}
.contact-info a:hover {
  color: var(--color-negro);
}
.contact_hero {
  margin: 0 auto;
  max-width: 100%;
  position: fixed;
  z-index: -1;
  opacity: 0.5;
  top: 0;
}
.contact_hero img {
  height: auto !important;
  width: 100% !important;
  min-height: 100vh !important;
  aspect-ratio: 10/2;
}
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-size: calc(1em + 1.2vw);
  color: #ffffff;
}
.contact-info p {
  font-size: 1.2rem;
}
.contact-form {
  max-width: 600px;
  width: 90%;
  padding: 20px;
  margin: 20px auto;
  border-radius: 20px;
  border: 1px solid #0004;
  background-color: #fffd;
  -webkit-box-shadow: 0px 0px 7px #0008;
  box-shadow: 0px 0px 7px #0008;
  opacity: 1 !important;
}
.contact-form form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 1 !important;
}
.contact-form h2,.contact-info h2 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: calc(1.4em + 1vw);
  color: var(--color-base-hover);
  text-align: center;
}
.contact-form label {
  min-height: 38px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--color-base-hover);
}
.contact-form input,.contact-form textarea {
  margin-bottom: 15px;
  padding: 10px;
  font-size: 1rem;
  border: 0;
  outline: 0;
  border-radius: 5px;
  color: var(--color-carbon);
  letter-spacing: 0.6px;
  line-height: 1.5;
  font-family: Arial, system-ui;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 2px 1px #7f7b7340;
  box-shadow: 0px 0px 2px 1px #7f7b7340;
  -webkit-transition: border ease-out 0.3s, border-radius ease-out 0.3s;
  -o-transition: border ease-out 0.3s, border-radius ease-out 0.3s;
  transition: border ease-out 0.3s, border-radius ease-out 0.3s;
}
textarea {
  resize: none;
}
.contact-form button {
  padding: 10px 20px;
  font-size: 1.1rem;
  background-color: var(--color-claro);
  color: var(--color-carbon);
  border: 1px solid #7f7b7340;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.contact-form button:hover {
  color: white;
  background-color: var(--color-base);
}
.contact-form button:active {
  background-color: var(--color-base-hover);
}
#map {
  max-width: 1000px;
  min-width: 250px;
  width: 50%;
  height: 400px;
  margin: 0 auto;
  margin-bottom: 20px;
  border-radius: 10px;
  padding: 10px;  
  border: 1px solid var(--color-claro);
  -webkit-box-shadow: 0px 0px 7px #0008;
  box-shadow: 0px 0px 7px #0008;
}
@media only screen and (max-width: 1000px) {
  #map {
    width: 100%;
  }
}
/* FIN PAGINA DE CONTACTO ------------------------------------------------------------------------------------- FIN PAGINA DE CONTACTO */ 
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* ABOUT ------------------------------------------------------------------------------------- ABOUT */
.about-container {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.about-section {
  margin-bottom: 30px;
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #007BFF;
}
.about-section p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}
.team-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}
.team-member img {
  border-radius: 50%;
  margin-right: 20px;
  width: 100px;
  height: 100px;
}
.team-member h3 {
  font-size: 1.5rem;
  margin: 0;
}
.team-member p {
  margin: 5px 0 0 0;
  font-size: 1rem;
  color: #666;
}
/* FIN ABOUT ------------------------------------------------------------------------------------- FIN ABOUT */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/


/* TERMS - PRIVACY ------------------------------------------------------------------------------------- */
.privacy-container,.terms-container {
  max-width: 800px;
  margin: 20px auto;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.privacy-container h2,.terms-container h2 {
  color: #007BFF;
  text-align: center;
  margin-bottom: 20px;
}
.privacy-container p,.terms-container p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}
.privacy-container h3,.terms-container h3 {
  margin-top: 20px;
  color: #0056b3;
}
/* FIN TERMS - FIN PRIVACY ------------------------------------------------------------------------------------- */

/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/

/* CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS - CATEGORIAS */
@keyframes aparecer_opacidad {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.waxing,.laser_hair_removal,.facial_treatments,.manicure_pedicure,.eyelash_extensions,.contenedor_body_treatments {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  margin-bottom: 20px;
  animation: aparecer_opacidad 1s linear;
}
.waxing nav,.laser_hair_removal nav,.facial_treatments nav,.manicure_pedicure nav,.eyelash_extensions nav,.contenedor_body_treatments nav {
  text-align: center;
}
.waxing nav ul,.laser_hair_removal nav ul,.facial_treatments nav ul,.manicure_pedicure nav ul,.eyelash_extensions nav ul,.contenedor_body_treatments nav ul {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.waxing nav ul li,.laser_hair_removal nav ul li,.facial_treatments nav ul li,.manicure_pedicure nav ul li,.eyelash_extensions nav ul li,.contenedor_body_treatments nav ul li {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.waxing nav ul li a,.laser_hair_removal nav ul li a,.facial_treatments nav ul li a,.manicure_pedicure nav ul li a,.eyelash_extensions nav ul li a,.contenedor_body_treatments nav ul li a {
  color: var(--color-base);
  text-decoration: none;
  padding: 10px;
  border-bottom: 1px solid transparent;
}
@media only screen and (min-width: 1500px) {
  .waxing nav,.laser_hair_removal nav,.facial_treatments nav,.manicure_pedicure nav,.eyelash_extensions nav,.contenedor_body_treatments nav {
    position: fixed;
    left: 5px;
    top: 5vh;
  }
  .waxing nav ul,.laser_hair_removal nav ul,.facial_treatments nav ul,.manicure_pedicure nav ul,.eyelash_extensions nav ul,.contenedor_body_treatments nav ul {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .waxing nav ul li,.laser_hair_removal nav ul li,.facial_treatments nav ul li,.manicure_pedicure nav ul li,.eyelash_extensions nav ul li,.contenedor_body_treatments nav ul li {
    text-align: left;
  }
  .waxing nav ul li a,.laser_hair_removal nav ul li a,.facial_treatments nav ul li a,.manicure_pedicure nav ul li a,.eyelash_extensions nav ul li a,.contenedor_body_treatments nav ul li a {
    text-align: left;
  }
}
.waxing nav ul li a:hover,
.laser_hair_removal nav ul li a:hover,
.facial_treatments nav ul li a:hover,
.manicure_pedicure nav ul li a:hover,
.eyelash_extensions nav ul li a:hover,
.contenedor_body_treatments nav ul li a:hover {
  color: var(--color-base-hover);
  border-bottom-color: #0003;
}
.contenedor_body_treatments section,.eyelash_extensions section,.manicure_pedicure section,.facial_treatments section,.laser_hair_removal section,.waxing section {
  margin-bottom: 40px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contenedor_body_treatments section h2,.eyelash_extensions section h2,.manicure_pedicure section h2,.facial_treatments section h2,.laser_hair_removal section h2,.waxing section h2 {
  text-align: center;
  color: #333;
  word-break: break-all;
  margin-bottom: 15px;
  font-size: calc(1.3em + 4vw);
  font-family: "argesta_displayregular", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
@media only screen and (max-width: 300px) {
  .contenedor_body_treatments section h2,.eyelash_extensions section h2,.manicure_pedicure section h2,.facial_treatments section h2,.laser_hair_removal section h2,.waxing section h2 {
    font-size: calc(1.3em + 1vw);
  }
}
.contenedor_body_treatments_image-container,.eyelash_extensions_image-container,.manicure_pedicure .manicure_pedicure_image-container,.image-facial_treatments,.laser_hair_removal_image-container,.waxing .image-container {
  text-align: center;
  margin-bottom: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.contenedor_body_treatments_image-container img,.eyelash_extensions_image-container img,.manicure_pedicure .manicure_pedicure_image-container img,.image-facial_treatments img,.laser_hair_removal_image-container img,.waxing .image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.contenedor_body_treatments article,.eyelash_extensions article,.manicure_pedicure article,.facial_treatments article,.laser_hair_removal article,.waxing article {
  margin-bottom: 20px;
  width: 98%;
  margin: 0 auto;  
  padding: 5px;
  border-radius: 9px;

}
.contenedor_body_treatments article h3,.eyelash_extensions article h3,.manicure_pedicure article h3,.facial_treatments article h3,.laser_hair_removal article h3,.waxing article h3 {
  text-align: left;
  color: #333;
  font-weight: bold;
  word-break: break-all;
  font-size: calc(1em + 1vw);
  font-family: "argesta_displayregular", system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.contenedor_body_treatments article p,.eyelash_extensions article p,.manicure_pedicure article p,.facial_treatments article p,.laser_hair_removal article p,.waxing article p {
  line-height: 1.6;
  padding-left: 2%;
  text-align: left;
  margin-bottom: 20px;
}
.contenedor_body_treatments article:hover,.eyelash_extensions article:hover,.manicure_pedicure article:hover,.facial_treatments article:hover,.laser_hair_removal article:hover,.waxing article:hover {
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.contenedor_body_treatments section:target,.eyelash_extensions section:target,.manicure_pedicure section:target,.facial_treatments section:target,.laser_hair_removal section:target,.waxing section:target {
  box-shadow: inset 0px 0px 10px 1px #0001;
  -webkit-transition:box-shadow 0.5s ease;
  -o-transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
}
/* NAV SECCIONES ------------------------------------------------------------------------------------- NAV SECCIONES */
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/* RESIZES ------------------------------------------------------------------------------------- RESIZES */
@media (min-width: 768px) {
  .btn-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .btn {
    padding: 12px 24px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  ._alto {
    max-height: 250px;
  }
  .hero-text {
    padding: 20px;
  }
  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
}
@media (max-width: 420px) {
  .hero-text {
    position: static;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-color: transparent;
  }
  .hero-text {
    color: var(--color-carbon);
  }
  .btn-group {
    width: 100%;
  }
  .btn {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }

  ._fll_wd_img {
    -webkit-box-shadow: initial;
            box-shadow: initial;
  }
  ._fll_wd_img div {
    padding: 10px;
    width: 95%;
    margin-top: 10px;
    max-width: 1000px;
    border-radius: 10px;
    background-color: #fff;
  
    position: initial;
    display: block;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  ._fll_wd_img div h3, ._fll_wd_img div p {
    max-width: initial !important;
    width: 100% !important;
    color: var(--color-base);
  }
  ._fll_wd_img div p { color: var(--color-base-hover); }
  .services-page p a {
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 992px) {
  #nav-menu ul li a {
    text-align: left;
    padding: 0;
    margin-top: 15px;
    color: var(--color-base);
  }
  ul li p {
    margin-top: 15px;
    color: var(--color-base);
  }
  .desplegable_categorias ul li a {
    padding: 10px 15px;
    color:  var(--color-base) !important;
  }
  .desplegable_categorias ul li a:hover {
    color:  var(--color-desplegable-hover) !important;
  }
  .desplegable_categorias ul li a:active {
    color:  var(--color-desplegable-active) !important;
  }
  #nav-menu {
      position: fixed;
      top: 0;
      left: -100%;
      height: 100%;
      width: 100%;
      background: #fff;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      -webkit-transition: left 0.5s;
      -o-transition: left 0.5s;
      transition: left 0.5s;
      text-align: left;
  }
  #nav-menu ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
  }
  .desplegable_categorias ul {
      position: static;
      -webkit-box-shadow: none;
              box-shadow: none;
  }
  .desplegable_categorias:hover ul {
      display: none;
      background: transparent;
  }
  .desplegable_categorias p {
      width: 100%;
  }
  #btn_menu_movil {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: absolute;
      top: 10px;
      right: 10px;
  }
  #btn_menu_movil.active #linea_1 {
    z-index: 999999999999;
      -webkit-transform: translateY(11px) rotate(60deg);
          -ms-transform: translateY(11px) rotate(60deg);
              transform: translateY(11px) rotate(60deg);
  }
  #btn_menu_movil.active #linea_2 {
    z-index: 999999999999;
    -webkit-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
            transform: rotate(359deg)
  }
  #btn_menu_movil.active #linea_3 {
    z-index: 999999999999;
      -webkit-transform: translateY(-11px) rotate(-60deg);
          -ms-transform: translateY(-11px) rotate(-60deg);
              transform: translateY(-11px) rotate(-60deg);
  }
  #nav-menu.active {
      left: 0;
  }  
  ._contact address {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  footer {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 1200px) {
  .services-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
  .fnt_argesta_reg {
    font-weight: 700;
  }
  .fnt_argesta_reg p {
    font-weight: 400;
  }
}
@media only screen and (min-width: 992px) {
  .home_menu ul li a,.home_menu ul li p {
    color: #ffffff !important;
  }
  .home_menu ul li a:hover, .home_menu ul li p:hover, .home_menu .desplegable_categorias p:hover {
    color: var(--color-blanco-hover) !important;
  }
  .home_menu ul li a:active, .home_menu ul li p:active {
    color: var(--color-blanco-active) !important;
  }

  .desplegable_categorias ul li a {
    color: var(--color-base) !important;
  }
  .desplegable_categorias ul li a:hover {
    color: var(--color-base-hover) !important;
  }
}
/* FIN RESIZES ------------------------------------------------------------------------------------- FIN RESIZES */