/* Cintillo Elementor Widget Styles */

.cintillo-container {
    position: relative;
    padding: 2rem 0;
    overflow: visible;
}

.cintillo-banner {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.cintillo-text {
    font-weight: bold;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 24px;
    color: #ffffff;
}

.cintillo-logo {
    position: absolute;
    left: 32px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateY(50%);
    overflow: hidden;
    z-index: 2;
    background: #ffffff;
}

.cintillo-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cintillo-container {
        padding: 1rem 0;
    }
    
    .cintillo-logo {
        width: 100px;
        height: 100px;
        left: 20px;
        border-width: 3px;
    }
    
    .cintillo-text {
        font-size: 16px;
        padding-left: 130px;
        padding-right: 20px;
        line-height: 1.2;
    }
    
    .cintillo-banner {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .cintillo-logo {
        width: 90px;
        height: 90px;
        left: 15px;
        border-width: 3px;
    }
    
    .cintillo-text {
        font-size: 14px;
        padding-left: 115px;
        padding-right: 15px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .cintillo-banner {
        height: 65px;
    }
}

/* Mejoras adicionales para móviles muy pequeños */
@media (max-width: 360px) {
    .cintillo-logo {
        width: 80px;
        height: 80px;
        left: 12px;
    }
    
    .cintillo-text {
        font-size: 12px;
        padding-left: 100px;
        padding-right: 12px;
    }
    
    .cintillo-banner {
        height: 60px;
    }
}

/* Animation Effects */
.cintillo-logo {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cintillo-logo:hover {
    transform: translateY(50%) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cintillo-banner {
    transition: box-shadow 0.3s ease;
}

.cintillo-banner:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Elementor Editor Specific Styles */
.elementor-editor-active .cintillo-container {
    min-height: 150px;
}

/* RTL Support */
.rtl .cintillo-logo {
    left: auto;
    right: 32px;
}

.rtl .cintillo-text {
    padding-left: 0;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .rtl .cintillo-logo {
        right: 20px;
    }
    
    .rtl .cintillo-text {
        padding-right: 130px;
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .rtl .cintillo-logo {
        right: 15px;
    }
    
    .rtl .cintillo-text {
        padding-right: 115px;
        padding-left: 15px;
    }
}

@media (max-width: 360px) {
    .rtl .cintillo-logo {
        right: 12px;
    }
    
    .rtl .cintillo-text {
        padding-right: 100px;
        padding-left: 12px;
    }
}