/* ============================================
   OVERRIDE GENERATEPRESS - FORZAR VERTICAL
   ============================================ */
.site-main, .entry-content, .site-content {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.page-template-page-portada .site-main {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden;
}

/* ============================================
   HERO - REFUGIO DE ANIMALES
   ============================================ */
.hero-adopcion {
  position: relative;
  width: 100% !important;
  min-height: 550px;
  background: url('https://www.test.invextudio.com/wp-content/uploads/2026/06/Slide_2.jpg') center/cover no-repeat;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 60px 8%;
  overflow: hidden;
  margin: 0;
  box-sizing: border-box;
}

.hero-adopcion::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 35%, rgba(0,0,0,0.1) 60%, transparent 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 550px;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  line-height: 1.7;
  opacity: 0.95;
}

.hero-cta {
  display: inline-block;
  background: #e8562e;
  color: #fff;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.15rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(232,86,46,0.4);
}

.hero-cta:hover {
  background: #cf4420;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232,86,46,0.5);
}



/* ============================================
   MISIÓN
   ============================================ */
.seccion-mision {
  width: 100% !important;
  display: block !important;
  padding: 80px 8%;
  text-align: center;
  background: #f9f9f9;
  box-sizing: border-box;
}

.seccion-mision h2 {
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 20px;
}

.seccion-mision > p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
}

.stats-grid {
  display: flex !important;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #e8562e;
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin-top: 10px;
  display: block;
}

/* ============================================
   MASCOTAS DESTACADAS
   ============================================ */
.seccion-mascotas {
  width: 100% !important;
  display: block !important;
  padding: 80px 8%;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}

.seccion-mascotas h2 {
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 50px;
}

.mascotas-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.mascota-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.mascota-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.mascota-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.mascota-info {
  padding: 20px;
}

.mascota-info h3 {
  font-size: 1.3rem;
  color: #2d2d2d;
  margin-bottom: 8px;
}

.mascota-info .mascota-edad {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 15px;
}

.mascota-info .btn-adoptar {
  display: inline-block;
  background: #e8562e;
  color: #fff;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.mascota-info .btn-adoptar:hover {
  background: #cf4420;
}

/* ============================================
   PROCESO DE ADOPCIÓN
   ============================================ */
.seccion-proceso {
  width: 100% !important;
  display: block !important;
  padding: 80px 8%;
  text-align: center;
  background: #f9f9f9;
  box-sizing: border-box;
}

.seccion-proceso h2 {
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 50px;
}

.proceso-grid {
  display: flex !important;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.paso-item {
  flex: 1;
  min-width: 200px;
  max-width: 220px;
  text-align: center;
}

.paso-icono {
  width: 80px;
  height: 80px;
  background: #e8562e;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: #fff;
}

.paso-item h3 {
  font-size: 1.1rem;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.paso-item p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* ============================================
   TESTIMONIOS
   ============================================ */
.seccion-testimonios {
  width: 100% !important;
  display: block !important;
  padding: 80px 8%;
  text-align: center;
  background: #fff;
  box-sizing: border-box;
}

.seccion-testimonios h2 {
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 50px;
}

.testimonios-grid {
  display: flex !important;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonio-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 30px;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  text-align: left;
}

.testimonio-card .testimonio-texto {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonio-card .testimonio-autor {
  font-weight: 700;
  color: #2d2d2d;
}

.testimonio-card .testimonio-mascota {
  font-size: 0.9rem;
  color: #888;
}

/* ============================================
   BLOG / NOTICIAS
   ============================================ */
.seccion-blog {
  width: 100% !important;
  display: block !important;
  padding: 80px 8%;
  text-align: center;
  background: #f9f9f9;
  box-sizing: border-box;
}

.seccion-blog h2 {
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 50px;
}

.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  text-align: left;
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card .blog-content {
  padding: 20px;
}

.blog-card .blog-fecha {
  font-size: 0.85rem;
  color: #e8562e;
  font-weight: 600;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.15rem;
  color: #2d2d2d;
  margin-bottom: 10px;
}

.blog-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

/* ============================================
   FOOTER / CONTACTO
   ============================================ */
.footer-refugio {
  width: 100% !important;
  display: block !important;
  background: #2d2d2d;
  color: #fff;
  padding: 60px 8% 30px;
  box-sizing: border-box;
}

.footer-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #e8562e;
}

.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.8;
}

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

.footer-col a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #e8562e;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #444;
  font-size: 0.9rem;
  color: #888;
}

/* MENÚ / NAVEGACIÓN */\n.main-navigation a,\n.main-navigation ul ul a,\n.site-header .main-navigation li a {\n  color: #2d2d2d !important;\n}\n.main-navigation ul ul {\n  background: #fff !important;\n}\n.main-navigation ul ul a {\n  color: #2d2d2d !important;\n}\n.main-navigation ul ul li:hover > a,\n.main-navigation a:hover,\n.main-navigation .current-menu-item > a,\n.main-navigation .current_page_item > a {\n  color: #e8562e !important;\n}\n\n/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hero-adopcion {
    flex-direction: column;
    text-align: center;
    padding: 40px 5%;
    min-height: auto;
  }

  .hero-content h1 {
    font-size: 2rem;
  }


  .stats-grid {
    gap: 30px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .proceso-grid {
    gap: 30px;
  }

  .testimonios-grid {
    flex-direction: column;
    align-items: center;
  }
}