/* CSS General (sirve para TODAS las categorías) */


.category-card{

display:flex;
overflow:hidden;

border-radius:18px;

background:#fff;

box-shadow:0 12px 30px rgba(0,0,0,.08);

margin:50px 0;

min-height:340px;

transition:.30s;

}

.category-card:hover{

transform:translateY(-6px);

box-shadow:0 18px 45px rgba(0,0,0,.15);

}



/* Imagen (sin espacios vacíos) */



.category-image{

flex:0 0 34%;

}

.category-image img{

width:100%;

height:100%;

display:block;

object-fit:cover;

}




/* Contenido */


.category-content{

flex:1;

padding:42px;

display:flex;

flex-direction:column;

justify-content:space-between;

}




/* Badge */


.category-badge{

display:inline-block;

padding:8px 16px;

border-radius:30px;

font-size:.9rem;

font-weight:700;

margin-bottom:18px;

}




/* Título */


.category-content h2{

margin:0;

font-size:2rem;

}




/* Descripción */


.category-content p{

margin:22px 0;

line-height:1.8;

font-size:1.05rem;

color:#555;

}



/* Estadísticas */


.category-stats{

display:flex;

gap:45px;

margin-top:10px;

margin-bottom:35px;

}

.stat{

display:flex;

flex-direction:column;

}

.stat strong{

font-size:1.9rem;

}

.stat span{

color:#666;

font-size:.9rem;

}



/* Botón */


.category-btn{

display:inline-block;

padding:14px 28px;

border-radius:10px;

font-weight:bold;

text-decoration:none;

color:white;

transition:.3s;

}

.category-btn:hover{

transform:translateY(-2px);

}


/* responsive */

@media(max-width:900px){

.category-card{

flex-direction:column;

}

.category-image{

height:240px;

}

.category-content{

padding:30px;

}

.category-stats{

gap:25px;

flex-wrap:wrap;

}

}









/* COLORES POR CATEGORÍAS */



/* 💰 Finance */


.finance .category-badge{

background:#d1fae5;
color:#065f46;

}

.finance .category-btn{

background:#10b981;

}


/* ❤️ Health */


.health .category-badge{

background:#ffe4e6;
color:#be123c;

}

.health .category-btn{

background:#ef4444;

}



/* 🍽 Cooking */

.cooking .category-badge{

background:#fff7ed;
color:#c2410c;

}

.cooking .category-btn{

background:#f97316;

}


/* 🏗 Construction */

.construction .category-badge{

background:#fef3c7;
color:#92400e;

}

.construction .category-btn{

background:#d97706;

}


/* 🎓 Education */

.education .category-badge{

background:#dbeafe;
color:#1d4ed8;

}

.education .category-btn{

background:#2563eb;

}


/* 🐶 Pets */

.pets .category-badge{

background:#dcfce7;
color:#166534;

}

.pets .category-btn{

background:#22c55e;

}



/* ⏱ Work */


.work .category-badge{

background:#ede9fe;
color:#6d28d9;

}

.work .category-btn{

background:#7c3aed;

}







