/* ===========================
   PAGE INICIO - ID 26
   =========================== */

/* ==========================
   HERO / BANNER INICIO
========================== */
.page-id-26 .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 70vh;
    background-image: url('ruta-del-banner.jpg'); /* Cambia por tu imagen */
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
    padding: 0 20px;
}

.page-id-26 .hero .hero-content {
    max-width: 900px;
}

.page-id-26 .hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-id-26 .hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.page-id-26 .hero .btn-hero {
    display: inline-block;
    background-color: #4caf50;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.page-id-26 .hero .btn-hero:hover {
    background-color: #388e3c;
    transform: scale(1.05);
}


/* --- ARTÍCULOS DESTACADOS --- */
.page-id-26 .articles {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-id-26 .articles h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #4caf50;
    text-align: center;
}

.page-id-26 .article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-id-26 .article-card {
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #fff;
}

.page-id-26 .article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.page-id-26 .article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.page-id-26 .article-card:hover img {
    transform: scale(1.05);
}

.page-id-26 .article-card .content {
    padding: 20px;
}

.page-id-26 .article-card h3 {
    margin-bottom: 10px;
    color: #333;
    font-size: 1.2rem;
}

.page-id-26 .article-card p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.page-id-26 .article-card a {
    text-decoration: none;
    color: #4caf50;
    font-weight: 600;
    transition: color 0.3s;
}
.page-id-26 .article-card a:hover {
    color: #388e3c;
}

/* --- CATEGORÍAS DESTACADAS --- */
.page-id-26 .categories {
    background-color: #f8f9f5;
    padding: 80px 20px;
    text-align: center;
}

.page-id-26 .categories h2 {
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: #4caf50;
}

.page-id-26 .category-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.page-id-26 .category-card {
    flex: 1 1 250px;
    max-width: 320px;
    padding: 30px 20px;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.page-id-26 .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.page-id-26 .category-card h3 {
    margin-bottom: 15px;
    color: #333;
    font-size: 1.3rem;
}

.page-id-26 .category-card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.page-id-26 .category-card a {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    color: #4caf50;
    font-weight: 600;
    transition: color 0.3s;
}
.page-id-26 .category-card a:hover {
    color: #388e3c;
}

/* --- SOBRE NOSOTROS --- */
.page-id-26 .about {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.page-id-26 .about img {
    flex: 1 1 400px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s;
}
.page-id-26 .about img:hover {
    transform: scale(1.03);
}

.page-id-26 .about .text {
    flex: 1 1 500px;
}

.page-id-26 .about h2 {
    font-size: 2.2rem;
    color: #4caf50;
    margin-bottom: 25px;
}

.page-id-26 .about p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.page-id-26 .about a {
    display: inline-block;
    text-decoration: none;
    color: #4caf50;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid #4caf50;
    transition: all 0.3s;
}
.page-id-26 .about a:hover {
    background-color: #4caf50;
    color: #fff;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .header-container { flex-direction: column; gap: 15px; }
    .site-title { text-align: center; }
    .main-nav .menu { flex-direction: column; gap: 15px; align-items: center; }
}

@media (max-width: 480px) {
    .site-title h1 { font-size: 1.5rem; }
    .site-title p { font-size: 0.9rem; }
    .header-cta .btn-header { padding: 8px 20px; font-size: 0.9rem; }
}

@media (max-width: 768px) {
    .page-id-26 .hero h1 { font-size: 2.2rem; }
    .page-id-26 .hero p { font-size: 1.1rem; }
    .page-id-26 .article-card img { height: 160px; }
}