body {
    font-family: 'Satoshi', sans-serif;
    margin: 0;
    color: #333;
}

@font-face {
    font-family: 'Gibson';
    src: url('fonts/Fontspring-DEMO-gibson-regular.otf') format('otf');
    font-weight: 400;
}



header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px;
    margin: 0px 40px;
    border-bottom: 0.5px solid #e7e7e7;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
  font-family: 'Satoshi', sans-serif;
  padding: 0;
  margin: 0;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  text-decoration: none;
  color: #758470;
  font-weight: 100;
  font-size: 18px;
  padding: 5px 10px;
  display: block;
}

.agendasesion-btn {
    background-color: white;
    border: 1px solid #758470;
    background-color: white;
    padding: 10px 20px;
    border-radius: 8px;
}



.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 0px 0px 20px 20px;
  min-width: 120px;
  padding: 20px 0;
  text-align: center;
  z-index: 1000;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 20px;
}


.dropdown-menu li {
  padding: 0px 10px 10px 10px;
}

.dropdown-menu li a {
  font-size: 16px;
  font-weight: 300;
  color: #A6B4A1;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown.show .dropdown-menu {
  display: block;
}




.hero {
    background: #e6eee8;
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 2em;
}

.hero button {
    margin-top: 20px;
    padding: 10px 20px;
}

.hero {
    position: relative;
    background-image: url('img/Banner1.png'); /* Cambiá 'img/banner.jpg' por la ruta correcta */
    background-size: cover;
    background-position: center;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Para que el texto quede a la derecha */
    color: #fff;
    padding-right: 5%;
}

.calendly-btn {
    text-decoration: none;
    color: #fff;
}

.overlay {
    position: absolute;
    width: 50%;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;   
    justify-content: center; 
    padding: 40px;
}

.overlay::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(166, 180, 161, 0.83); /* Verde con 83% opacidad */
    z-index: 1;
}

.hero-texto {
    position: relative; /* Para estar por encima del ::before */
    z-index: 2;
    text-align: left;   /* Alineado a la derecha */
    max-width: 90%;
    color: #fff;
}

.hero-texto h1 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-texto p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.5;
}

.call-to-action {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}

.call-to-action p {
    color: #999;
    font-size: 17px;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.call-to-action button {
    background: #758470;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
}

.prensa-slider {
    background: #A6B4A1;
    color: #fff;
    text-align: center;
    padding: 40px 0px 25px;
    position: relative;
}

.slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.slide {
    display: none;
    align-items: center;
    gap: 40px;
    text-decoration: none;
    color: inherit;
}

.slide.active {
    display: flex;
}

.logo-medio {
    width: 150px; /* Ajustalo al tamaño real de tus logos */
    filter: brightness(0) invert(1); /* Opcional: pone los logos en blanco si son oscuros */
}

.frase {
    font-size: 20px;
    font-weight: 300;
    max-width: 500px;
    text-align: left;
    border-left: 1px solid rgba(255,255,255,0.5);
    padding-left: 30px;
}

.dots {
    margin-top: 20px;
}

.dot {
    height: 7px;
    width: 7px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
}

.servicios_h2 {
    text-align: center;
    padding: 50px 20px 30px;
    color: #d3d3d3;
    font-weight: 500;
    font-size: 1.5em;
}

.servicios-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
    flex-wrap: wrap; /* Responsive */
    margin-bottom: 70px;
}

.servicio {
    border: 2px solid #d3d3d3;
    border-radius: 45px;
    padding: 40px 20px 15px;
    width: 220px;
    text-align: center;
    transition: all 0.3s ease;
}

.servicio img {
    width: 130px;
    margin-bottom: 15px;
    opacity: 0.5; 
}

.servicio h3 {
    color: #cbcbcb;
    font-weight: 600;
    font-size: 1.1em;
}

/* Hover */
.servicio:hover {
    transform: scale(1.05);
    border-color: #A6B4A1;
}

.faq-section {
    position: relative;
    background-image: url('img/Banner2.png'); /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    height: 300px; /* Ajustalo si querés */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.faq-overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background-color: rgba(166, 180, 161, 0.83); /* Verde con 83% de opacidad */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.faq-contenido {
    max-width: 600px;
}

.faq-contenido h2 {
    font-size: 2em;
    margin-bottom: 0px;
    font-weight: 500;
}

.faq-contenido p {
    font-size: 1.2em;
    font-weight: 300;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.faq-contenido button {
    background: #fff;
    color: rgba(166, 180, 161);
    padding: 12px 30px;
    border-radius: 30px;
    border: none;
    font-size: 1em;
    cursor: pointer;
    font-weight: 600;
}


.testimonios {
    text-align: center;
    padding: 50px 20px;
}

.icono-comillas {
    width: 65px; /* Ajustá el tamaño al icono real */
    margin-bottom: 30px;
}

.testimonios-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap; /* Responsive */
}

.testimonio {
    border: 1.5px solid #d3d3d3;
    border-radius: 45px;
    padding: 30px 30px 10px;
    width: 250px;
    color: #999;
    font-weight: 300;
    text-align: left;
    transition: all 0.3s ease;
    height: auto;

}

.testimonio p {
    margin-bottom: 5px;
    line-height: 1.6;
    font-family: 'Gibson', sans-serif;
    font-size: 14px;
}

.testimonio strong {
    color: #999;
    font-weight: 600;
    display: block;
    margin-top: 10px;
}

.testimonio span {
    font-size: 0.9em;
    color: #ccc;
}

.leer-mas {
    background: none;
    border: none;
    color: #cbcbcb;
    cursor: pointer;
    margin-top: 7px;
    font-size: 0.9em;
    font-weight: 400;
    padding: 0
}

.footer {
    background: #A6B4A1; /* Fondo verde */
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    text-align: center;
    margin: 10px;
}

.logo img {
    width: 90px; /* Ajusta el tamaño del logo */
    height: auto;
    padding-left: 33%;
    padding-top: 14px;
}


/* Logo */
.logo {
    font-size: 2em;
    font-weight: 600;
}

/* Menú */
.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu ul li {
    margin: 10px 0;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.menu ul li a:hover {
    text-decoration: underline;
}

/* Frase y redes */
.icono-footer {
    width: 30px;
}

.frase p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 20px;
    padding-left: 12px;
    padding-bottom: 10px;
}

.redes a img {
    width: 30px;
    margin: 0 10px;
}

.frase {
    font-size: 20px;
    font-weight: 300;
    max-width: 500px;
    text-align: center; /* opcional, según tu diseño */
    padding-left: 0; /* eliminá el padding si ya no hay línea */
}

.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333; /* Asegura visibilidad */
  z-index: 1100; /* Esté por encima del resto */
  top: 25px;
  right: 30px;
}


@media (max-width: 768px) {
  .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 20px;
  box-sizing: border-box;
  margin-left: -20%;
  padding-left: 12%;
}

.hamburger {
  display: block;
  font-size: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #A6B4A1;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 55px;
    width: auto;
    padding-left: 0;
}

.header-placeholder {
  width: 28px; /* mismo ancho que el botón hamburguesa */
}

header {
    margin: 0px 45px;
}



nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: white;
  display: none;
  z-index: 1000;
}

nav.open {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-menu > li > a {
  font-size: 24px;
  color: #758470;
  text-decoration: none;
  font-weight: 400;
  text-align: center;
}

/* Mostrar submenú en mobile, y darle estilo más liviano */
.dropdown-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 0;
}

.dropdown-menu li a {
  font-size: 18px;
  color: #a6b4a1;
  font-weight: 300;
  text-align: center;
  margin-top: 11px;
}

/* Evitá que se esconda el dropdown en mobile */
.dropdown:hover .dropdown-menu {
  display: flex;
}

/* Opcional: desactivar hover si lo tenés */
.dropdown-menu {
  position: static;
  transform: none;
  background: transparent;
  border: none;
  padding: 0;
}


  /* Menú oculto inicialmente */
  

.hero { 
  height: 400px;
  padding-right: 0%;
}

.overlay {
    position: unset;
    width: 100%;
}

.hero-texto h1 {
    font-size: 34px;
}

.hero-texto p {
    font-size: 24px;
}

.call-to-action {
    padding: 40px 36px;
}

.call-to-action p {
    font-size: 20px;
    margin-bottom: 35px;
}

.call-to-action button {
    padding: 16px 30px;
    font-size: 20px;
    font-weight: 500;
}



.slider {
  flex-direction: column;
}

.slide {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0px;
  padding: 22px 10px 25px;
}

.logo-medio {
    width: auto;
    height: 95px;
}


.frase {
  font-size: 18px;
  font-weight: 300;
  max-width: 90%;
  border: none;
  padding-left: 0;
  padding-left: 0;
  margin-top: 0px;
}

.servicios_h2 {
  font-size: 28px;
}

.faq-section {
    height: 340px;  
}

.overlay{
    padding: 10px;
}


.footer {
  background-color: #95a390; /* fondo similar al verde suave */
  color: white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
}

.footer-col.logo img {
  max-width: 100px;
  display: none;
}

.footer-col.menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col.menu ul li {
  margin-bottom: 10px;
}

.footer-col.menu ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

.footer-col.menu ul li a:hover {
  text-decoration: underline;
}

.footer-col.frase .icono-footer {
  width: 25px;
  margin-bottom: 10px;
}

.footer-col.frase p {
  font-size: 15px;
  margin: 0 0 20px;
  line-height: 1.5;
}

.footer-col.frase .redes a img {
  width: 28px;
  margin: 0 10px;
}

/* Elimina bordes innecesarios en mobile */
.borde-lateral {
  border: none;
}






}