/* Consejos Home Section */
.consejos-home-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.consejos-home-section .icon-container {
    width: 60px;
    height: 60px;
    background: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

/* FAQ Home Section */
.faq-home-section {
    background: #fff;
}

.faq-item {
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
}

.faq-item:hover {
    border-color: #CC0000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Improved spacing for FAQ items */
.catalog-card {
    padding: 1.5rem 1rem; /* Reduced padding */
    height: 100%; /* Changed from 100% to auto */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.catalog-card:hover {
    border-color: #CC0000;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.1);
}

.catalog-card h4 {
    font-size: 1.2rem; /* Slightly smaller */
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem; /* Reduced spacing */
    line-height: 1.3;
    text-align: center;
}

.catalog-card p {
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1rem; /* Reduced spacing */
    text-align: center;
    font-size: 0.9rem; /* Slightly smaller text */
}

.catalog-card .btn {
    margin-top: 0.5rem; /* Reduced top margin */
}

/* Specific styles for Consejos section - shorter cards */
.consejos-home-section .catalog-card {
    padding: 1.25rem 0.75rem; /* Even less padding for consejos */
    min-height: auto; /* Remove minimum height */
}

.consejos-home-section .icon-container {
    width: 50px; /* Smaller icon container */
    height: 50px;
    margin-bottom: 0.75rem; /* Reduced spacing */
}

.consejos-home-section .icon-container i {
    font-size: 1.5rem !important; /* Smaller icon */
}

.consejos-home-section .catalog-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.consejos-home-section .catalog-card p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

/* Keep FAQ cards slightly taller for better content display */
.faq-home-section .catalog-card {
    padding: 1.5rem 1rem;
}

.faq-home-section .catalog-card h4 {
    margin-bottom: 1rem;
}

.faq-home-section .catalog-card p {
    margin-bottom: 1.25rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .catalog-card {
        padding: 1.25rem 0.75rem;
    }
    
    .consejos-home-section .catalog-card {
        padding: 1rem 0.5rem;
    }
    
    .catalog-card h4 {
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
    
    .catalog-card p {
        margin-bottom: 0.75rem;
        font-size: 0.85rem;
    }
}
