.taxonomy-index-header {
text-align: center;
padding: 60px 0 40px;
background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
margin-bottom: 50px;
border-radius: 0 0 50px 50px;
}
.taxonomy-index-header h1 {
font-size: 3rem;
color: var(--directorio-primary-color);
margin-bottom: 10px;
font-weight: 800;
}
.taxonomy-index-header p {
font-size: 1.2rem;
color: #6c757d;
}
.taxonomy-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
gap: 25px;
margin-bottom: 60px;
}
.taxonomy-card {
background: #fff;
border-radius: 20px;
padding: 30px;
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
border: 1px solid rgba(0,0,0,0.05);
text-decoration: none;
box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.taxonomy-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 35px rgba(0,0,0,0.1);
border-color: var(--directorio-accent-color);
}
.taxonomy-card-icon {
width: 80px;
height: 80px;
border-radius: 20px;
background: var(--directorio-secondary-color);
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 20px;
font-size: 32px;
color: var(--directorio-primary-color);
transition: all 0.3s ease;
}
.taxonomy-card:hover .taxonomy-card-icon {
background: var(--directorio-primary-color);
color: #fff;
}
.taxonomy-card-icon img {
width: 50px;
height: 50px;
object-fit: contain;
}
.taxonomy-card-title {
font-size: 1.4rem;
font-weight: 700;
color: #2d3436;
margin-bottom: 5px;
}
.taxonomy-card-count {
font-size: 0.9rem;
color: #95a5a6;
font-weight: 500;
} .term-archive-header {
background: linear-gradient(135deg, var(--directorio-primary-color) 0%, var(--directorio-accent-color) 100%);
color: #fff;
padding: 80px 0;
margin-bottom: 50px;
position: relative;
overflow: hidden;
}
.term-archive-header::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: url(https://www.transparenttextures.com/patterns/cubes.png);
opacity: 0.1;
}
.term-archive-header .container {
position: relative;
z-index: 1;
}
.term-badge {
display: inline-block;
padding: 6px 15px;
background: rgba(255,255,255,0.2);
border-radius: 50px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 15px;
text-transform: uppercase;
letter-spacing: 1px;
}
.term-title {
font-size: 3.5rem;
font-weight: 800;
margin: 0;
line-height: 1.1;
}
.term-description {
font-size: 1.25rem;
opacity: 0.9;
margin-top: 15px;
max-width: 700px;
}
.listings-grid-refined {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 30px;
margin-bottom: 60px;
}
.refined-card {
background: #fff;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
transition: all 0.3s ease;
border: 1px solid rgba(0,0,0,0.03);
position: relative;
display: flex;
flex-direction: column;
}
.refined-card:hover {
transform: translateY(-8px);
box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}
.refined-card-image {
height: 200px;
position: relative;
overflow: hidden;
}
.refined-card-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}
.refined-card:hover .refined-card-image img {
transform: scale(1.1);
}
.refined-card-badge {
position: absolute;
top: 15px;
right: 15px;
background: rgba(255,255,255,0.9);
padding: 5px 12px;
border-radius: 50px;
font-size: 0.75rem;
font-weight: 700;
color: var(--directorio-primary-color);
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
backdrop-filter: blur(5px);
}
.refined-card-content {
padding: 25px;
flex: 1;
display: flex;
flex-direction: column;
}
.refined-card-title {
font-size: 1.4rem;
font-weight: 700;
margin-bottom: 10px;
color: #1a1a1a;
}
.refined-card-address {
font-size: 0.9rem;
color: #6c757d;
margin-bottom: 15px;
display: flex;
gap: 8px;
align-items: flex-start;
}
.refined-card-address i {
color: var(--directorio-accent-color);
margin-top: 3px;
}
.refined-card-meta {
margin-top: auto;
padding-top: 20px;
border-top: 1px solid #f0f0f0;
display: flex;
justify-content: space-between;
align-items: center;
}
.refined-rating {
display: flex;
align-items: center;
gap: 5px;
color: #ff9f43;
font-weight: 700;
font-size: 0.95rem;
}
.refined-visits {
display: flex;
align-items: center;
gap: 6px;
font-size: 0.9rem;
color: #e91e63;
font-weight: 600;
}
.refined-visits i {
animation: heartbeat 2s ease-in-out infinite;
}
@media (max-width: 768px) {
.term-title {
font-size: 2.5rem;
}
.taxonomy-index-header h1 {
font-size: 2.2rem;
}
}