/*
 Theme Name: Hello Elementor Child
 Theme URI: https://example.com
 Description: Child theme de Hello Elementor
 Author: Tu nombre
 Template: hello-elementor
 Version: 1.0.0
*/

/* acá podés poner tus css personalizados */
.parque-novedades-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.parque-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.parque-card__thumb img,
.parque-card__thumb--placeholder {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.parque-card__thumb--placeholder {
    background: #e8edf8;
}

.parque-card__content {
    padding: 1.5rem 0.75rem 1.5rem 0;
    /* para parecerse a tu layout, dejamos espacio a la izquierda */
    padding-left: 0.75rem;
}

.parque-card__title {
    font-size: 1.55rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #3552c9; /* parecido al azul de tu captura */
    font-weight: 700;
}

.parque-card__title a {
    color: inherit;
    text-decoration: none;
}

.parque-card__excerpt {
    color: #4f5562;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.parque-card__btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #88c33f;
    color: #fff;
    font-weight: 600;
    border-radius: 999px;
    padding: .65rem 1.35rem;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
}

.parque-card__btn-icon {
    background: #fff;
    color: #88c33f;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .9rem;
}

.parque-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,.1);
}

/* título de la sección (si lo pusiste con Elementor, mejor darle clase en Elementor) */
h2.elementor-heading-title.parque-titulo,
.parque-titulo {
    font-size: 3rem;
    color: #3552c9;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* mobile */
@media (max-width: 767px) {
    .parque-card__thumb img,
    .parque-card__thumb--placeholder {
        height: 180px;
    }
    .parque-card__title {
        font-size: 1.3rem;
    }
    .parque-card__content {
        padding: 1.2rem 1rem 1.2rem 1rem;
    }
}

/* ===== Botón flotante WhatsApp ===== */
.ps-whatsapp-floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Sora', system-ui, sans-serif;
}

/* Panel oculto */
.ps-whatsapp-panel {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all .2s ease;
}

/* Panel visible cuando el usuario hace click */
.ps-whatsapp-panel.ps-wa-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.ps-wa-btn {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 14px rgba(0,0,0,.18);
  transition: background .15s ease, transform .15s ease;
}

.ps-wa-btn:hover {
  background: #1ebe57;
  transform: translateY(-1px);
}

/* Ícono principal */
.ps-wa-main {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease;
}

.ps-wa-main:hover {
  transform: translateY(-2px);
  background: #1ebe57;
}

.ps-wa-icon {
  width: 28px;
  height: 28px;
}

/* Mobile: botones en columna */
@media (max-width: 767px) {
  .ps-whatsapp-panel {
    flex-direction: column;
    align-items: flex-end;
  }
}

/* Aumentar MUCHO el tamaño del icono interno */
.ps-wa-icon {
  width: 48px !important;
  height: 48px !important;
}

@media (max-width: 767px) {
  .ps-wa-icon {
    width: 54px !important;
    height: 54px !important;
  }
}

/* Botón principal (mantén los valores que ya te gusten) */
.ps-wa-main {
  width: 72px;   /* o 78px si lo querés más grande */
  height: 72px;
  border-radius: 50%;
  border: none;
  background: #25D366; /* verde WhatsApp */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease;
}

.ps-wa-main:hover,
.ps-wa-main:focus-visible {
  background: #1ebe57; /* mismo tono más oscuro */
  transform: translateY(-2px);
}

/* Icono interno: solo el logo, en blanco puro */
.ps-wa-icon {
  width: 40px;   /* probá 44 o 48 si lo querés aún más grande */
  height: 40px;
  display: block;
  color: #ffffff; /* para usar currentColor si lo quisieras */
}

.ps-wa-icon path {
  fill: #ffffff; /* blanco sólido, sin verdes raros */
}

/* Opcional: ajustar en mobile */
@media (max-width: 767px) {
  .ps-wa-main {
    width: 78px;
    height: 78px;
  }

  .ps-wa-icon {
    width: 44px;
    height: 44px;
  }
}

.ps-wa-main {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  transition: transform .15s ease, background .15s ease;
}

.ps-wa-main:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.ps-wa-icon {
  width: 38px;
  height: 38px;
  display: block;
}


