/* ================= Hover solo en imágenes con enlace ================= */
a img:hover {
  transform: scale(1.05);
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

/* ================= Fondos generales ================= */
body.home {
  background: linear-gradient(to bottom, #153234, #3A6C71); /* degradado inicio */
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

body:not(.home) {
  background-color: #153234; /* color sólido resto de páginas */
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
}

/* ================= Sobre mí, Mis proyectos, Contacto ================= */
.page-id-XX, /* sustituir XX, YY, ZZ si quieres */
.page-id-YY,
.page-id-ZZ {
  background-color: #153234; 
  color: #FFFFFF;
}

/* ================= Novedades ================= */
body.page-id-53 {
  background-color: #E6F0EF; /* turquesa clarito */
}

body.page-id-53 .post {
  background-color: #153234; /* recuadritos color principal */
  color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  padding: 20px;
  margin-bottom: 25px;
  transition: all 0.3s ease-in-out;
}

body.page-id-53 .post:hover {
  background-color: rgba(21,50,52,0.85);
  transform: translateY(-3px);
}

body.page-id-53 .post h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #FFFFFF;
}

body.page-id-53 .post h2 a {
  color: #FFFFFF;
  text-decoration: none;
}

body.page-id-53 .post p {
  font-family: 'Inter', sans-serif;
  color: #FFFFFF;
  line-height: 1.5;
}

/* ================= Formulario Contacto ================= */
.wpcf7 form .wpcf7-submit {
  background-color: #FFFFFF;
  color: #153234;
  border: none;
  padding: 15px 40px;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.wpcf7 form .wpcf7-submit:hover {
  opacity: 0.8;
  transform: translateY(-2px);
  background-color: #FFFFFF;
  color: #153234;
}

.wpcf7 input, 
.wpcf7 textarea {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  background-color: transparent;
}

.wpcf7-response-output {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #153234;
  margin-top: 15px;
}

/* ================= Menú sticky ================= */
.elementor-location-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #153234;
  transition: background-color 0.3s ease;
}

/* ================= Overlay scroll ================= */
#scroll-overlay-top,
#scroll-overlay-bottom {
  position: fixed;
  left: 0;
  width: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 9998;
}

/* Overlay superior debajo del menú */
#scroll-overlay-top {
  top: 60px; /* ajustar según altura menú */
  height: 80px;
  background: linear-gradient(to bottom, rgba(21,50,52,0.8), transparent);
}

/* Overlay inferior */
#scroll-overlay-bottom {
  bottom: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(21,50,52,0.8), transparent);
}
