@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Lato", sans-serif;
  background-color: #d7e3f4;
  color: #1a1a1a;
  line-height: 1.5;
}

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", serif;
}

.navbar {
  background-color: #194fbc !important;
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 700;
  color: #d7e3f4;
}
.navbar-brand img {
  height: 100px;
  width: 140px;
  margin-right: 0.5rem;
}

.nav-link {
  color: #d7e3f4;
  opacity: 0.9;
  transition: 0.3s;
  font-size: 1.2rem;
}
.nav-link:hover {
  opacity: 1;
}

@media (max-width: 576px) {
  .hero {
    background-position: center 35%;
    min-height: 60vh;
  }
}
.hero {
  position: relative;
  background: url("../medios/abogado-mano.jpg") center/cover no-repeat;
  background-position: center 15%;
  color: #d7e3f4;
  min-height: 80vh;
  display: flex;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 120px;
  padding-bottom: 120px;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 35%, rgba(0, 0, 0, 0.35) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
}
.hero h1, .hero h2 {
  text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.6);
}

.presentacion {
  text-align: center;
  background: #d7e3f4;
}

.abogada {
  background: #d7e3f4;
}
.abogada .abogada_matricula {
  font-weight: 700;
  color: rgba(88, 95, 102, 0.6);
}

.especialidades {
  background: #d7e3f4;
}

#equipo {
  background: #d7e3f4;
}
#equipo img {
  width: 100%;
  max-width: 220px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  border-radius: 14%;
  transition: transform 0.3s ease;
}
#equipo h5 {
  margin-top: 0.3rem;
  margin-bottom: 0.5rem;
}
#equipo p {
  margin-top: 0;
  text-align: justify;
  max-width: 340px;
  margin-left: auto;
  margin-right: auto;
}

.equipo img:hover {
  transform: scale(1.05);
}

.estudio {
  background: #d7e3f4;
}

.contacto {
  background: #d7e3f4;
  text-align: center;
}

@media (max-width: 768px) {
  #equipo img {
    width: 70%;
    max-width: 280px;
    height: auto;
    max-height: none;
  }
}
.blog {
  padding: 4rem 1rem;
  background-color: #d7e3f4;
  text-align: center;
}
.blog h2 {
  margin-bottom: 3rem;
  display: inline-block;
}

/*GRID de cards*/
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/*Card*/
.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}
.blog-card:hover .blog-image {
  transform: scale(1.05);
}

/*IMG*/
.blog-image {
  height: 180px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.4s ease;
}
.blog-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

/*Fecha*/
.blog-date {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 1;
}

/*Contenido*/
.blog-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-content h3 {
  margin-bottom: 1rem;
}

/*Texto*/
.blog-resumen {
  line-height: 1.6;
  text-align: justify;
}

.blog-full {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  line-height: 1.6;
  margin-top: 0.5rem;
  text-align: justify;
}

/*Boton*/
.blog-toggle {
  margin-top: auto;
  background: none;
  border: none;
  padding: 0;
  color: #194fbc;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.2s ease;
}
.blog-toggle:hover {
  color: #163a85;
  text-decoration: underline;
}

/*Disclaimer*/
.blog-disclaimer {
  max-width: 900px;
  margin: 3rem auto 0;
  font-size: 0.9rem;
  color: #555;
  text-align: center;
}

/*Responsive*/
@media (max-width: 768px) {
  .blog {
    padding: 3rem 1rem;
  }
  .blog-image {
    height: 150px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-content h3 {
    font-size: 1.2rem;
  }
  .blog-resumen, .blog-full {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .blog-toggle {
    margin-top: 1.5rem;
    padding: 0.5rem 0;
    font-size: 1rem;
  }
}
.footer {
  background: #194fbc;
  color: #d7e3f4;
  padding: 1rem 0;
  text-align: center;
}

.especialidad-card {
  font-family: "Inter", sans-serif;
  background: #ffffff;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.especialidad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/*titulo*/
.especialidad-card h3 {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  color: #194fbc;
  border-bottom: 2px solid #194fbc;
  color: #194fbc;
}

/*texto*/
.especialidad-card > p {
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1rem;
  text-align: justify;
}

.lista-servicios {
  margin-top: 0.8rem;
  padding-left: 1rem;
  font-size: 0.85rem;
  color: #555;
}
.lista-servicios li {
  margin-bottom: 0.4rem;
  line-height: 1.4;
}
.lista-servicios strong {
  color: #194fbc;
  font-weight: 600;
}

.servicio-item {
  margin-bottom: 0.6rem;
}

.servicio-toggle {
  background: #f8f9fa;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #194fbc;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  line-height: 1.4;
}
.servicio-toggle span {
  font-weight: 600;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.servicio-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.4s ease;
  padding: 0 0.8rem;
}
.servicio-content p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 0.8rem;
}

.servicio-item.open .servicio-toggle {
  background: rgba(25, 79, 188, 0.08);
}

.servicio-item.open .servicio-toggle span {
  transform: rotate(45deg);
}

.servicio-lista {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}
.servicio-lista li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.6rem;
  line-height: 1.4;
  color: #333;
}

.servicio-lista li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #194fbc;
  font-weight: bold;
}

.especialidad-icono {
  display: flex;
  justify-content: center;
  margin-bottom: 0.8rem;
}
.especialidad-icono img {
  width: 85px;
  height: 85px;
  padding: 0.8rem;
  background: rgba(25, 79, 188, 0.08);
  border-radius: 14px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  padding: 0;
}

.icono-svg {
  width: 80px;
  height: 80px;
  color: #194fbc;
}

.card-header {
  margin-bottom: 1rem;
  border: none;
  padding: 0;
  background: transparent;
}

.familia-servicios {
  margin-top: 1rem;
  text-align: justify;
}

/*responsive*/
@media (max-width: 768px) {
  .especialidad-card {
    padding: 1.3rem;
  }
  .especialidad-card p {
    font-size: 0.88rem;
  }
}
/*Mobile*/
@media (max-width: 576px) {
  .especialidad-card {
    padding: 1.2rem;
  }
  .especialidad-card h3 {
    font-size: 1rem;
  }
  .especialidad-card p {
    font-size: 0.85rem;
    line-height: 1.45;
  }
}
.btn-primary {
  background-color: #194fbc;
  border-color: #194fbc;
}
.btn-primary:hover {
  background-color: rgb(19.014084507, 60.0845070423, 142.985915493);
  border-color: rgb(19.014084507, 60.0845070423, 142.985915493);
}

.btn-outline-light {
  border-color: #d7e3f4;
  color: #d7e3f4;
}
.btn-outline-light:hover {
  background-color: #d7e3f4;
  color: #194fbc;
}

.btn-consultar {
  margin-top: auto;
  align-self: center;
  display: inline-block;
  padding: 0.55rem 1.4rem;
  margin-top: 1rem;
  background-color: #194fbc;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  transition: background color 0.3s ease, transform 0.3s ease;
}
.btn-consultar:hover {
  background-color: rgb(20.2112676056, 63.8676056338, 151.9887323944);
  transform: translateY(-2px);
  color: #ffffff;
}

form {
  max-width: 600px;
  margin: 0 auto;
}
form .form-control {
  border-radius: 0.4rem;
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
form button {
  margin-top: 1rem;
}

.btn-wsp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-wsp img {
  width: 35px;
}

section h2 {
  position: relative;
  display: inline-block;
  padding: 1rem 0;
  margin-bottom: 3rem;
  text-align: center;
}

section h2::before,
section h2::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 180px;
  height: 4px;
  background-color: #194fbc !important;
  transform: translateX(-50%);
}

section h2::before {
  top: 8px;
}

section h2::after {
  bottom: 0px;
}

.seccionDra {
  margin-bottom: 0.5rem !important;
}

.seccionDra::before,
.seccionDra::after {
  display: none !important;
}

/* Altura del navbar (ajustable si cambiás el logo) */
:root {
  --nav-height: 110px;
}

html {
  scroll-padding-top: var(--nav-height);
}

/* Versión mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 90px;
  }
}/*# sourceMappingURL=styles.css.map */