.elementor-4189 .elementor-element.elementor-element-900510e{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-57dfe61 *//* ======== ESTILO ELEGANTE — ESTUDIO ZOE ======== */
:root {
  --ez-font-serif: "Playfair Display", serif;
  --ez-font-sans: "Poppins", "Helvetica Neue", sans-serif;
  --ez-color-dark: #0b0b0b;
  --ez-color-muted: #5a5a5a;
  --ez-color-accent: #c6a87d; /* dorado suave */
  --ez-color-bg: #ffffff;
  --ez-color-border: #ececec;
}

/* CONTENEDOR GENERAL */
.ez-proposal {
  background: var(--ez-color-bg);
  color: var(--ez-color-dark);
  font-family: var(--ez-font-sans);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

/* TITULARES */
.ez-proposal h1,
.ez-proposal h2,
.ez-proposal h3 {
  font-family: var(--ez-font-serif);
  font-weight: 600;
  color: var(--ez-color-dark);
  letter-spacing: -0.02em;
}

.ez-proposal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--ez-color-border);
  padding-bottom: 0.6rem;
  margin-bottom: 1rem;
}

.ez-proposal h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.ez-proposal h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background: var(--ez-color-accent);
  margin-top: 0.4rem;
}

.ez-proposal h3 {
  font-size: 1.3rem;
  color: var(--ez-color-accent);
  margin-bottom: 0.6rem;
}

/* PÁRRAFOS Y ENLACES */
.ez-proposal p {
  margin-bottom: 1.25rem;
  color: var(--ez-color-dark);
}

.ez-proposal a {
  color: var(--ez-color-accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

.ez-proposal a:hover {
  color: #b08c60;
}

/* PRO TIP BOX */
.ez-pro-tip {
  border-left: 3px solid var(--ez-color-accent);
  background: #faf8f5;
  padding: 1rem 1.25rem;
  font-style: italic;
  color: var(--ez-color-muted);
  margin: 1.25rem 0;
}

/* CHECKLIST */
.ez-checklist li {
  list-style: none;
  position: relative;
  padding-left: 1.5rem;
}

.ez-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--ez-color-accent);
  font-weight: 600;
}

/* GALERÍA */
.ez-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.ez-gallery a {
  position: relative;
  overflow: hidden;
}

.ez-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: brightness(95%);
}

.ez-gallery a:hover img {
  transform: scale(1.04);
  filter: brightness(100%);
}

/* CTA FINAL */
.ez-cta {
  background: var(--ez-color-dark);
  color: #fff;
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-top: 3rem;
  border-radius: 0;
}

.ez-cta h3 {
  font-family: var(--ez-font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 0.75rem;
}

.ez-cta p {
  color: #e2e2e2;
  margin-bottom: 1rem;
}

.ez-cta .ez-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--ez-font-sans);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ez-cta .ez-btn:hover {
  background: var(--ez-color-accent);
  border-color: var(--ez-color-accent);
  color: #fff;
}

/* FAQ */
.ez-faq details {
  border-top: 1px solid var(--ez-color-border);
  padding: 0.75rem 0;
}

.ez-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ez-color-dark);
  position: relative;
}

.ez-faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  color: var(--ez-color-accent);
  font-weight: bold;
}

.ez-faq[open] summary::after {
  content: "–";
}

.ez-faq p {
  color: var(--ez-color-muted);
  margin: 0.5rem 0 0.75rem 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ez-hero {
    grid-template-columns: 1fr;
  }
  .ez-proposal h1 {
    font-size: 1.9rem;
  }
  .ez-proposal h2 {
    font-size: 1.3rem;
  }
  .ez-cta {
    padding: 2rem 1.2rem;
  }
}/* End custom CSS */