/**
 * Estilos para el plugin de Horóscopo Diario
 */

.horoscopo-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    border: none !important;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 800px;
    background: transparent !important;
    box-shadow: none !important;
    overflow: hidden;
}

.horoscopo-header {
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.horoscopo-header h1 {
    font-size: 2rem;
    color: #333;
    margin: 0;
}

.horoscopo-mood {
    font-size: 1.1rem;
    color: #555;
    margin-top: 0.5rem;
}

.horoscopo-main-prediction {
    margin-bottom: 2rem;
}

.horoscopo-main-prediction h2 {
    font-size: 1.5rem !important;
    color: #444 !important;
    border-bottom: 2px solid #7e57c2 !important;
    padding-bottom: 0.5rem !important;
    display: inline-block !important;
    margin-bottom: 1rem !important;
}

.horoscopo-main-prediction p {
    line-height: 1.6;
    color: #333;
}

.horoscopo-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.horoscopo-detail-item {
    background-color: transparent;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    border: none;
}

.horoscopo-detail-item h2 {
    font-size: 1.2rem !important;
    color: #333 !important;
    margin: 0 0 1rem 0 !important;
    display: flex !important;
    align-items: center !important;
}

.horoscopo-detail-item h2 .icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.horoscopo-detail-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #666;
    margin: 0.5rem 0;
    margin-left: 5px;
}

.horoscopo-extras-grid {
    margin-top: 1.5rem;
}

.horoscopo-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    background-color: transparent;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: none;
    margin-bottom: 1.5rem; /* Espaciado inferior añadido */
}

.footer-item, .footer-item-full {
    text-align: center;
}
.footer-item-full {
    grid-column: 1 / -1;
    border-top: 1px dashed #ddd;
    padding-top: 1rem;
    margin-top: 1rem;
}
.footer-item-full:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}


.footer-item strong, .footer-item-full strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #555;
}

.lucky-number {
    font-size: 2rem;
    font-weight: bold;
    color: #7e57c2;
}

.lucky-color {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.horoscopo-full-width-section {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.horoscopo-full-width-section h2 {
    font-size: 1.2rem !important;
    color: #333 !important;
    margin: 0 0 1rem 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.horoscopo-full-width-section h2 .icon {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.compatibility-text {
    line-height: 1.6;
    color: #333;
    margin-bottom: 1.5rem;
}

.footer-item-full p {
    margin: 0;
    color: #333;
}

.compatibility-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 0.5rem;
}

.compatible-sign-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: transform 0.2s ease-in-out;
}

.compatible-sign-item:hover {
    transform: translateY(-4px);
}

.compatible-sign-img {
    width: 75px;
    height: 75px;
    max-width: 75px !important; /* Forzar el tamaño */
    border-radius: 50%;
    margin-bottom: 0.75rem;
    object-fit: cover;
    background-color: #fff;
    border: 3px solid #ede7f6;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: box-shadow 0.2s ease-in-out;
}

.compatible-sign-item:hover .compatible-sign-img {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.compatible-sign-name {
    font-size: 0.95rem;
}

/* --- Responsive Styles --- */
@media (max-width: 768px) {
    .horoscopo-container {
        padding: 1.5rem 1.5rem;
        margin: 1rem 0;
    }

    .horoscopo-header h2 {
        font-size: 1.6rem;
    }

    .compatible-sign-img {
        width: 60px;
        height: 60px;
        max-width: 60px !important;
    }

    .compatible-sign-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 600px) {
    .horoscopo-details-grid,
    .horoscopo-footer {
        grid-template-columns: 1fr;
    }

    .horoscopo-detail-item {
        padding: 1.5rem !important;
    }
} 